From 10ed19ef74e6aa2a618d441baf6a68ca96721e42 Mon Sep 17 00:00:00 2001 From: Vishal Date: Tue, 23 Jul 2024 19:14:07 +0530 Subject: [PATCH] Added Schema Kwargs Signed-off-by: Vishal --- grammar.js | 8 +- src/grammar.json | 29 + src/node-types.json | 38 +- src/parser.c | 157161 +++++++++++++++++++------------------- test/corpus/schema.txt | 19 + 5 files changed, 79542 insertions(+), 77713 deletions(-) diff --git a/grammar.js b/grammar.js index 8c27174..b112821 100644 --- a/grammar.js +++ b/grammar.js @@ -311,6 +311,11 @@ module.exports = grammar({ $.dict_expr, ), + schema_instantiation: $ => seq( + field('constructor', $.call), + field('initialization', $.dictionary) + ), + schema_index_signature: $ => seq( '[', optional(seq( @@ -576,6 +581,7 @@ module.exports = grammar({ $.lambda_expr, $.quant_expr, $.schema_expr, + $.schema_instantiation, $.paren_expression, $.braces_expression, $.optional_attribute, @@ -761,7 +767,7 @@ module.exports = grammar({ assignment: $ => seq( field('left', $.dotted_name), choice( - seq('=', field('right', choice($.dotted_name,$.expression, $.selector_expression))), + seq('=', field('right', choice($.dotted_name,$.expression, $.selector_expression, $.schema_instantiation))), seq(':', field('type', $.type), '=', field('right', $.expression)), alias(seq(':',field('type', $.type)),'null_assignment'), ), diff --git a/src/grammar.json b/src/grammar.json index 19a7cc6..daa452d 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -454,6 +454,27 @@ } ] }, + "schema_instantiation": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "constructor", + "content": { + "type": "SYMBOL", + "name": "call" + } + }, + { + "type": "FIELD", + "name": "initialization", + "content": { + "type": "SYMBOL", + "name": "dictionary" + } + } + ] + }, "schema_index_signature": { "type": "SEQ", "members": [ @@ -1650,6 +1671,10 @@ "type": "SYMBOL", "name": "schema_expr" }, + { + "type": "SYMBOL", + "name": "schema_instantiation" + }, { "type": "SYMBOL", "name": "paren_expression" @@ -2893,6 +2918,10 @@ { "type": "SYMBOL", "name": "selector_expression" + }, + { + "type": "SYMBOL", + "name": "schema_instantiation" } ] } diff --git a/src/node-types.json b/src/node-types.json index cc4d0b0..c456a58 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -227,6 +227,10 @@ "type": "schema_expr", "named": true }, + { + "type": "schema_instantiation", + "named": true + }, { "type": "select_suffix", "named": true @@ -372,6 +376,10 @@ { "type": "expression", "named": true + }, + { + "type": "schema_instantiation", + "named": true } ] }, @@ -2036,6 +2044,32 @@ } } }, + { + "type": "schema_instantiation", + "named": true, + "fields": { + "constructor": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call", + "named": true + } + ] + }, + "initialization": { + "multiple": false, + "required": true, + "types": [ + { + "type": "dictionary", + "named": true + } + ] + } + } + }, { "type": "schema_statement", "named": true, @@ -2738,11 +2772,11 @@ }, { "type": "float", - "named": true + "named": false }, { "type": "float", - "named": false + "named": true }, { "type": "for", diff --git a/src/parser.c b/src/parser.c index 8c4b20b..b554b75 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3264 -#define LARGE_STATE_COUNT 150 -#define SYMBOL_COUNT 226 +#define STATE_COUNT 3290 +#define LARGE_STATE_COUNT 195 +#define SYMBOL_COUNT 227 #define ALIAS_COUNT 3 #define TOKEN_COUNT 114 #define EXTERNAL_TOKEN_COUNT 11 -#define FIELD_COUNT 40 +#define FIELD_COUNT 42 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 82 +#define PRODUCTION_ID_COUNT 83 enum { sym_identifier = 1, @@ -142,109 +142,110 @@ enum { sym_elif_clause = 123, sym_else_clause = 124, sym_schema_expr = 125, - sym_schema_index_signature = 126, - sym_lambda_expr = 127, - sym_quant_expr = 128, - sym_quant_target = 129, - sym_quant_op = 130, - sym_list_splat = 131, - sym_dictionary_splat = 132, - sym_type_alias_statement = 133, - sym_schema_statement = 134, - sym_mixin_statement = 135, - sym_protocol_statement = 136, - sym_rule_statement = 137, - sym_check_statement = 138, - sym_argument_list = 139, - sym_decorated_definition = 140, - sym_decorator = 141, - sym_block = 142, - sym_dotted_name = 143, - sym__parameters = 144, - sym_parameter = 145, - sym_default_parameter = 146, - sym_typed_default_parameter = 147, - sym_expression = 148, - sym_as_expression = 149, - sym_selector_expression = 150, - sym_primary_expression = 151, - sym_paren_expression = 152, - sym_braces_expression = 153, - sym_not_operator = 154, - sym_boolean_operator = 155, - sym_long_expression = 156, - sym_string_literal_expr = 157, - sym_config_expr = 158, - sym_config_entries = 159, - sym_config_entry = 160, - sym_test = 161, - sym_if_entry = 162, - sym_binary_operator = 163, - sym_unary_operator = 164, - sym_sequence_operation = 165, - sym_in_operation = 166, - sym_not_in_operation = 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_attribute_declaration = 175, - sym_optional_item = 176, - sym_null_coalesce = 177, - sym_subscript = 178, - sym_slice = 179, - sym_call = 180, - sym_typed_parameter = 181, - sym_type = 182, - sym_schema_type = 183, - sym_union_type = 184, - sym_function_type = 185, - sym_basic_type = 186, - sym_list_type = 187, - sym_dict_type = 188, - sym_literal_type = 189, - sym_keyword_argument = 190, - sym_list = 191, - sym_dictionary = 192, - sym_dict_expr = 193, - sym_pair = 194, - sym_list_comprehension = 195, - sym_dictionary_comprehension = 196, - sym__comprehension_clauses = 197, - sym__collection_elements = 198, - sym_for_in_clause = 199, - sym_if_clause = 200, - sym_conditional_expression = 201, - sym_string = 202, - sym_string_content = 203, - aux_sym_module_repeat1 = 204, - aux_sym_import_prefix_repeat1 = 205, - aux_sym_if_statement_repeat1 = 206, - aux_sym_quant_target_repeat1 = 207, - aux_sym_check_statement_repeat1 = 208, - aux_sym_argument_list_repeat1 = 209, - aux_sym_decorated_definition_repeat1 = 210, - aux_sym_dotted_name_repeat1 = 211, - aux_sym__parameters_repeat1 = 212, - aux_sym_selector_expression_repeat1 = 213, - aux_sym_long_expression_repeat1 = 214, - aux_sym_config_entries_repeat1 = 215, - aux_sym_comparison_operator_repeat1 = 216, - aux_sym_subscript_repeat1 = 217, - aux_sym_union_type_repeat1 = 218, - aux_sym_function_type_repeat1 = 219, - aux_sym_dictionary_repeat1 = 220, - aux_sym_dict_expr_repeat1 = 221, - aux_sym__comprehension_clauses_repeat1 = 222, - aux_sym__collection_elements_repeat1 = 223, - aux_sym_raw_string_repeat1 = 224, - aux_sym_string_content_repeat1 = 225, - anon_alias_sym_isnot = 226, - anon_alias_sym_notin = 227, - anon_alias_sym_null_assignment = 228, + sym_schema_instantiation = 126, + sym_schema_index_signature = 127, + sym_lambda_expr = 128, + sym_quant_expr = 129, + sym_quant_target = 130, + sym_quant_op = 131, + sym_list_splat = 132, + sym_dictionary_splat = 133, + sym_type_alias_statement = 134, + sym_schema_statement = 135, + sym_mixin_statement = 136, + sym_protocol_statement = 137, + sym_rule_statement = 138, + sym_check_statement = 139, + sym_argument_list = 140, + sym_decorated_definition = 141, + sym_decorator = 142, + sym_block = 143, + sym_dotted_name = 144, + sym__parameters = 145, + sym_parameter = 146, + sym_default_parameter = 147, + sym_typed_default_parameter = 148, + sym_expression = 149, + sym_as_expression = 150, + sym_selector_expression = 151, + sym_primary_expression = 152, + sym_paren_expression = 153, + sym_braces_expression = 154, + sym_not_operator = 155, + sym_boolean_operator = 156, + sym_long_expression = 157, + sym_string_literal_expr = 158, + sym_config_expr = 159, + sym_config_entries = 160, + sym_config_entry = 161, + sym_test = 162, + sym_if_entry = 163, + sym_binary_operator = 164, + sym_unary_operator = 165, + sym_sequence_operation = 166, + sym_in_operation = 167, + sym_not_in_operation = 168, + sym_comparison_operator = 169, + sym_assignment = 170, + sym_augmented_assignment = 171, + sym_unification = 172, + sym_select_suffix = 173, + sym_attribute = 174, + sym_optional_attribute = 175, + sym_optional_attribute_declaration = 176, + sym_optional_item = 177, + sym_null_coalesce = 178, + sym_subscript = 179, + sym_slice = 180, + sym_call = 181, + sym_typed_parameter = 182, + sym_type = 183, + sym_schema_type = 184, + sym_union_type = 185, + sym_function_type = 186, + sym_basic_type = 187, + sym_list_type = 188, + sym_dict_type = 189, + sym_literal_type = 190, + sym_keyword_argument = 191, + sym_list = 192, + sym_dictionary = 193, + sym_dict_expr = 194, + sym_pair = 195, + sym_list_comprehension = 196, + sym_dictionary_comprehension = 197, + sym__comprehension_clauses = 198, + sym__collection_elements = 199, + sym_for_in_clause = 200, + sym_if_clause = 201, + sym_conditional_expression = 202, + sym_string = 203, + sym_string_content = 204, + aux_sym_module_repeat1 = 205, + aux_sym_import_prefix_repeat1 = 206, + aux_sym_if_statement_repeat1 = 207, + aux_sym_quant_target_repeat1 = 208, + aux_sym_check_statement_repeat1 = 209, + aux_sym_argument_list_repeat1 = 210, + aux_sym_decorated_definition_repeat1 = 211, + aux_sym_dotted_name_repeat1 = 212, + aux_sym__parameters_repeat1 = 213, + aux_sym_selector_expression_repeat1 = 214, + aux_sym_long_expression_repeat1 = 215, + aux_sym_config_entries_repeat1 = 216, + aux_sym_comparison_operator_repeat1 = 217, + aux_sym_subscript_repeat1 = 218, + aux_sym_union_type_repeat1 = 219, + aux_sym_function_type_repeat1 = 220, + aux_sym_dictionary_repeat1 = 221, + aux_sym_dict_expr_repeat1 = 222, + aux_sym__comprehension_clauses_repeat1 = 223, + aux_sym__collection_elements_repeat1 = 224, + aux_sym_raw_string_repeat1 = 225, + aux_sym_string_content_repeat1 = 226, + anon_alias_sym_isnot = 227, + anon_alias_sym_notin = 228, + anon_alias_sym_null_assignment = 229, }; static const char * const ts_symbol_names[] = { @@ -374,6 +375,7 @@ static const char * const ts_symbol_names[] = { [sym_elif_clause] = "elif_clause", [sym_else_clause] = "else_clause", [sym_schema_expr] = "schema_expr", + [sym_schema_instantiation] = "schema_instantiation", [sym_schema_index_signature] = "schema_index_signature", [sym_lambda_expr] = "lambda_expr", [sym_quant_expr] = "quant_expr", @@ -606,6 +608,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_elif_clause] = sym_elif_clause, [sym_else_clause] = sym_else_clause, [sym_schema_expr] = sym_schema_expr, + [sym_schema_instantiation] = sym_schema_instantiation, [sym_schema_index_signature] = sym_schema_index_signature, [sym_lambda_expr] = sym_lambda_expr, [sym_quant_expr] = sym_quant_expr, @@ -1216,6 +1219,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_schema_instantiation] = { + .visible = true, + .named = true, + }, [sym_schema_index_signature] = { .visible = true, .named = true, @@ -1643,37 +1650,39 @@ enum { field_body = 7, field_condition = 8, field_consequence = 9, - field_default = 10, - field_definition = 11, - field_dictionary_or_list = 12, - field_dotted_name = 13, - field_error_message = 14, - field_expr1 = 15, - field_expr2 = 16, - field_function = 17, - field_identifier = 18, - field_index = 19, - field_integer = 20, - field_is_mutable = 21, - field_key = 22, - field_key_type = 23, - field_left = 24, - field_name = 25, - field_object = 26, - field_operand_name = 27, - field_operator = 28, - field_operators = 29, - field_parameters = 30, - field_protocol = 31, - field_quant_op = 32, - field_quant_target = 33, - field_return_type = 34, - field_right = 35, - field_string = 36, - field_subscript = 37, - field_type = 38, - field_value = 39, - field_value_type = 40, + field_constructor = 10, + field_default = 11, + field_definition = 12, + field_dictionary_or_list = 13, + field_dotted_name = 14, + field_error_message = 15, + field_expr1 = 16, + field_expr2 = 17, + field_function = 18, + field_identifier = 19, + field_index = 20, + field_initialization = 21, + field_integer = 22, + field_is_mutable = 23, + field_key = 24, + field_key_type = 25, + field_left = 26, + field_name = 27, + field_object = 28, + field_operand_name = 29, + field_operator = 30, + field_operators = 31, + field_parameters = 32, + field_protocol = 33, + field_quant_op = 34, + field_quant_target = 35, + field_return_type = 36, + field_right = 37, + field_string = 38, + field_subscript = 39, + field_type = 40, + field_value = 41, + field_value_type = 42, }; static const char * const ts_field_names[] = { @@ -1687,6 +1696,7 @@ static const char * const ts_field_names[] = { [field_body] = "body", [field_condition] = "condition", [field_consequence] = "consequence", + [field_constructor] = "constructor", [field_default] = "default", [field_definition] = "definition", [field_dictionary_or_list] = "dictionary_or_list", @@ -1697,6 +1707,7 @@ static const char * const ts_field_names[] = { [field_function] = "function", [field_identifier] = "identifier", [field_index] = "index", + [field_initialization] = "initialization", [field_integer] = "integer", [field_is_mutable] = "is_mutable", [field_key] = "key", @@ -1728,80 +1739,81 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [5] = {.index = 5, .length = 1}, [6] = {.index = 6, .length = 1}, [7] = {.index = 7, .length = 2}, - [8] = {.index = 9, .length = 1}, - [9] = {.index = 10, .length = 1}, - [10] = {.index = 11, .length = 1}, - [11] = {.index = 12, .length = 2}, - [12] = {.index = 14, .length = 1}, - [13] = {.index = 15, .length = 3}, - [14] = {.index = 18, .length = 2}, + [8] = {.index = 9, .length = 2}, + [9] = {.index = 11, .length = 1}, + [10] = {.index = 12, .length = 1}, + [11] = {.index = 13, .length = 1}, + [12] = {.index = 14, .length = 2}, + [13] = {.index = 16, .length = 1}, + [14] = {.index = 17, .length = 3}, [15] = {.index = 20, .length = 2}, [16] = {.index = 22, .length = 2}, [17] = {.index = 24, .length = 2}, - [18] = {.index = 26, .length = 3}, - [19] = {.index = 29, .length = 1}, - [20] = {.index = 30, .length = 2}, + [18] = {.index = 26, .length = 2}, + [19] = {.index = 28, .length = 3}, + [20] = {.index = 31, .length = 1}, [21] = {.index = 32, .length = 2}, [22] = {.index = 34, .length = 2}, [23] = {.index = 36, .length = 2}, [24] = {.index = 38, .length = 2}, - [25] = {.index = 40, .length = 1}, - [26] = {.index = 41, .length = 1}, - [27] = {.index = 42, .length = 2}, + [25] = {.index = 40, .length = 2}, + [26] = {.index = 42, .length = 1}, + [27] = {.index = 43, .length = 1}, [28] = {.index = 44, .length = 2}, [29] = {.index = 46, .length = 2}, - [30] = {.index = 48, .length = 4}, - [31] = {.index = 52, .length = 2}, - [32] = {.index = 52, .length = 2}, - [33] = {.index = 54, .length = 1}, - [34] = {.index = 55, .length = 2}, + [30] = {.index = 48, .length = 2}, + [31] = {.index = 50, .length = 4}, + [32] = {.index = 54, .length = 2}, + [33] = {.index = 54, .length = 2}, + [34] = {.index = 56, .length = 1}, [35] = {.index = 57, .length = 2}, - [36] = {.index = 59, .length = 1}, - [37] = {.index = 60, .length = 3}, - [38] = {.index = 63, .length = 3}, - [39] = {.index = 66, .length = 3}, - [40] = {.index = 69, .length = 2}, - [41] = {.index = 71, .length = 3}, - [42] = {.index = 74, .length = 2}, - [43] = {.index = 76, .length = 4}, - [44] = {.index = 80, .length = 3}, - [45] = {.index = 83, .length = 1}, - [46] = {.index = 84, .length = 3}, - [47] = {.index = 87, .length = 2}, - [48] = {.index = 89, .length = 4}, - [49] = {.index = 93, .length = 2}, - [50] = {.index = 95, .length = 4}, - [51] = {.index = 99, .length = 4}, - [52] = {.index = 103, .length = 2}, + [36] = {.index = 59, .length = 2}, + [37] = {.index = 61, .length = 1}, + [38] = {.index = 62, .length = 3}, + [39] = {.index = 65, .length = 3}, + [40] = {.index = 68, .length = 3}, + [41] = {.index = 71, .length = 2}, + [42] = {.index = 73, .length = 3}, + [43] = {.index = 76, .length = 2}, + [44] = {.index = 78, .length = 4}, + [45] = {.index = 82, .length = 3}, + [46] = {.index = 85, .length = 1}, + [47] = {.index = 86, .length = 3}, + [48] = {.index = 89, .length = 2}, + [49] = {.index = 91, .length = 4}, + [50] = {.index = 95, .length = 2}, + [51] = {.index = 97, .length = 4}, + [52] = {.index = 101, .length = 4}, [53] = {.index = 105, .length = 2}, - [54] = {.index = 107, .length = 3}, - [55] = {.index = 110, .length = 3}, - [56] = {.index = 113, .length = 3}, - [57] = {.index = 116, .length = 1}, - [58] = {.index = 117, .length = 1}, - [59] = {.index = 118, .length = 5}, - [60] = {.index = 123, .length = 2}, - [61] = {.index = 125, .length = 1}, - [62] = {.index = 126, .length = 3}, - [63] = {.index = 129, .length = 4}, - [64] = {.index = 133, .length = 2}, + [54] = {.index = 107, .length = 2}, + [55] = {.index = 109, .length = 3}, + [56] = {.index = 112, .length = 3}, + [57] = {.index = 115, .length = 3}, + [58] = {.index = 118, .length = 1}, + [59] = {.index = 119, .length = 1}, + [60] = {.index = 120, .length = 5}, + [61] = {.index = 125, .length = 2}, + [62] = {.index = 127, .length = 1}, + [63] = {.index = 128, .length = 3}, + [64] = {.index = 131, .length = 4}, [65] = {.index = 135, .length = 2}, - [66] = {.index = 137, .length = 4}, - [67] = {.index = 141, .length = 2}, - [68] = {.index = 143, .length = 3}, - [69] = {.index = 146, .length = 3}, - [70] = {.index = 149, .length = 4}, - [71] = {.index = 153, .length = 5}, - [72] = {.index = 158, .length = 3}, - [73] = {.index = 161, .length = 3}, - [74] = {.index = 164, .length = 5}, - [75] = {.index = 169, .length = 5}, - [76] = {.index = 174, .length = 4}, - [77] = {.index = 178, .length = 6}, - [78] = {.index = 184, .length = 6}, - [79] = {.index = 190, .length = 4}, - [80] = {.index = 194, .length = 6}, - [81] = {.index = 200, .length = 7}, + [66] = {.index = 137, .length = 2}, + [67] = {.index = 139, .length = 4}, + [68] = {.index = 143, .length = 2}, + [69] = {.index = 145, .length = 3}, + [70] = {.index = 148, .length = 3}, + [71] = {.index = 151, .length = 4}, + [72] = {.index = 155, .length = 5}, + [73] = {.index = 160, .length = 3}, + [74] = {.index = 163, .length = 3}, + [75] = {.index = 166, .length = 5}, + [76] = {.index = 171, .length = 5}, + [77] = {.index = 176, .length = 4}, + [78] = {.index = 180, .length = 6}, + [79] = {.index = 186, .length = 6}, + [80] = {.index = 192, .length = 4}, + [81] = {.index = 196, .length = 6}, + [82] = {.index = 202, .length = 7}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1822,269 +1834,272 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_arguments, 1}, {field_function, 0}, [9] = + {field_constructor, 0}, + {field_initialization, 1}, + [11] = {field_definition, 1}, - [10] = + [12] = {field_name, 1}, - [11] = + [13] = {field_expr1, 0}, - [12] = + [14] = {field_error_message, 2, .inherited = true}, {field_expr1, 2, .inherited = true}, - [14] = + [16] = {field_operators, 0}, - [15] = + [17] = {field_is_mutable, 1}, {field_name, 0}, {field_type, 2}, - [18] = + [20] = {field_attribute, 0}, {field_type, 2}, - [20] = + [22] = {field_operators, 0, .inherited = true}, {field_operators, 1, .inherited = true}, - [22] = + [24] = {field_left, 0}, {field_right, 2}, - [24] = + [26] = {field_left, 0}, {field_type, 2}, - [26] = + [28] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [29] = + [31] = {field_alias, 2}, - [30] = + [32] = {field_condition, 2}, {field_expr1, 0}, - [32] = + [34] = {field_condition, 0}, {field_error_message, 2}, - [34] = + [36] = {field_attribute, 2}, {field_object, 0}, - [36] = + [38] = {field_alias, 2}, {field_name, 0}, - [38] = + [40] = {field_condition, 1}, {field_consequence, 3}, - [40] = + [42] = {field_body, 1}, - [41] = + [43] = {field_type, 2}, - [42] = + [44] = {field_name, 0}, {field_value, 2}, - [44] = + [46] = {field_key, 0}, {field_value, 2}, - [46] = + [48] = {field_body, 3}, {field_name, 1}, - [48] = + [50] = {field_error_message, 0, .inherited = true}, {field_error_message, 1, .inherited = true}, {field_expr1, 0, .inherited = true}, {field_expr1, 1, .inherited = true}, - [52] = + [54] = {field_operators, 0}, {field_operators, 1}, - [54] = + [56] = {field_dictionary_or_list, 0}, - [55] = + [57] = {field_subscript, 2}, {field_value, 0}, - [57] = + [59] = {field_index, 2}, {field_object, 0}, - [59] = + [61] = {field_alternative, 0}, - [60] = + [62] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 3}, - [63] = + [65] = {field_alternative, 4, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, - [66] = + [68] = {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [69] = + [71] = {field_body, 3}, {field_parameters, 1}, - [71] = + [73] = {field_body, 3}, {field_body, 4}, {field_name, 1}, - [74] = + [76] = {field_error_message, 2}, {field_expr1, 0}, - [76] = + [78] = {field_is_mutable, 1}, {field_name, 0}, {field_type, 2}, {field_value, 4}, - [80] = + [82] = {field_left, 0}, {field_right, 4}, {field_type, 2}, - [83] = + [85] = {field_subscript, 1}, - [84] = + [86] = {field_subscript, 2}, {field_subscript, 3, .inherited = true}, {field_value, 0}, - [87] = + [89] = {field_subscript, 0, .inherited = true}, {field_subscript, 1, .inherited = true}, - [89] = + [91] = {field_alternative, 4, .inherited = true}, {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [93] = + [95] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [95] = + [97] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [99] = + [101] = {field_alternative, 5, .inherited = true}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [103] = + [105] = {field_left, 1}, {field_right, 3}, - [105] = + [107] = {field_key_type, 1}, {field_value_type, 4}, - [107] = + [109] = {field_name, 0}, {field_type, 2}, {field_value, 4}, - [110] = + [112] = {field_body, 3}, {field_body, 4}, {field_parameters, 1}, - [113] = + [115] = {field_body, 5}, {field_name, 1}, {field_protocol, 3}, - [116] = + [118] = {field_integer, 1}, - [117] = + [119] = {field_body, 2}, - [118] = + [120] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [123] = + [125] = {field_key_type, 2}, {field_value_type, 5}, - [125] = + [127] = {field_type, 4}, - [126] = + [128] = {field_body, 5}, {field_parameters, 1}, {field_return_type, 3}, - [129] = + [131] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_protocol, 3}, - [133] = + [135] = {field_integer, 1}, {field_integer, 2, .inherited = true}, - [135] = + [137] = {field_integer, 0, .inherited = true}, {field_integer, 1, .inherited = true}, - [137] = + [139] = {field_expr1, 5}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, - [141] = + [143] = {field_body, 2}, {field_body, 3}, - [143] = + [145] = {field_attr_alias, 1}, {field_key_type, 3}, {field_value_type, 6}, - [146] = + [148] = {field_default, 6}, {field_key_type, 1}, {field_value_type, 4}, - [149] = + [151] = {field_body, 5}, {field_body, 6}, {field_parameters, 1}, {field_return_type, 3}, - [153] = + [155] = {field_dotted_name, 5}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, {field_string, 6}, - [158] = + [160] = {field_default, 7}, {field_key_type, 2}, {field_value_type, 5}, - [161] = + [163] = {field_attr_alias, 1}, {field_key_type, 4}, {field_value_type, 7}, - [164] = + [166] = {field_expr1, 7}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, - [169] = + [171] = {field_expr1, 5}, {field_expr2, 7}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, - [174] = + [176] = {field_attr_alias, 1}, {field_default, 8}, {field_key_type, 3}, {field_value_type, 6}, - [178] = + [180] = {field_dotted_name, 7}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, {field_string, 8}, - [184] = + [186] = {field_dotted_name, 5}, {field_expr2, 8}, {field_identifier, 1}, {field_quant_op, 0}, {field_quant_target, 3}, {field_string, 6}, - [190] = + [192] = {field_attr_alias, 1}, {field_default, 9}, {field_key_type, 4}, {field_value_type, 7}, - [194] = + [196] = {field_expr1, 7}, {field_expr2, 9}, {field_identifier, 1}, {field_identifier, 3}, {field_quant_op, 0}, {field_quant_target, 5}, - [200] = + [202] = {field_dotted_name, 7}, {field_expr2, 10}, {field_identifier, 1}, @@ -2096,43 +2111,43 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [17] = { + [18] = { [1] = anon_alias_sym_null_assignment, [2] = anon_alias_sym_null_assignment, }, - [24] = { + [25] = { [3] = sym_block, }, - [29] = { + [30] = { [3] = sym_block, }, - [31] = { + [32] = { [0] = anon_alias_sym_notin, [1] = anon_alias_sym_notin, }, - [32] = { + [33] = { [0] = anon_alias_sym_isnot, [1] = anon_alias_sym_isnot, }, - [37] = { + [38] = { [3] = sym_block, }, - [38] = { + [39] = { [3] = sym_block, }, - [40] = { + [41] = { [3] = sym_block, }, - [48] = { + [49] = { [3] = sym_block, }, - [56] = { + [57] = { [5] = sym_block, }, - [58] = { + [59] = { [2] = sym_block, }, - [62] = { + [63] = { [5] = sym_block, }, }; @@ -2153,79 +2168,79 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 3, + [5] = 5, [6] = 6, - [7] = 7, - [8] = 3, - [9] = 3, - [10] = 7, - [11] = 6, - [12] = 4, + [7] = 3, + [8] = 6, + [9] = 2, + [10] = 10, + [11] = 3, + [12] = 10, [13] = 13, - [14] = 7, + [14] = 14, [15] = 3, [16] = 3, - [17] = 7, + [17] = 14, [18] = 18, - [19] = 7, - [20] = 20, - [21] = 20, - [22] = 3, - [23] = 7, - [24] = 7, - [25] = 13, - [26] = 3, - [27] = 27, - [28] = 2, - [29] = 7, - [30] = 7, + [19] = 4, + [20] = 18, + [21] = 3, + [22] = 18, + [23] = 18, + [24] = 18, + [25] = 18, + [26] = 18, + [27] = 5, + [28] = 13, + [29] = 18, + [30] = 3, [31] = 3, - [32] = 18, - [33] = 27, + [32] = 3, + [33] = 18, [34] = 34, [35] = 35, [36] = 34, - [37] = 34, - [38] = 38, - [39] = 38, + [37] = 37, + [38] = 35, + [39] = 35, [40] = 40, - [41] = 41, - [42] = 42, + [41] = 40, + [42] = 40, [43] = 43, - [44] = 42, - [45] = 45, + [44] = 44, + [45] = 40, [46] = 46, [47] = 47, - [48] = 41, - [49] = 42, - [50] = 43, - [51] = 43, - [52] = 42, - [53] = 43, + [48] = 48, + [49] = 40, + [50] = 47, + [51] = 47, + [52] = 47, + [53] = 53, [54] = 54, - [55] = 42, - [56] = 43, - [57] = 43, - [58] = 42, - [59] = 42, - [60] = 43, - [61] = 61, - [62] = 42, - [63] = 63, - [64] = 61, - [65] = 65, - [66] = 54, - [67] = 40, - [68] = 47, - [69] = 45, - [70] = 63, - [71] = 42, - [72] = 65, - [73] = 46, - [74] = 43, - [75] = 43, + [55] = 55, + [56] = 56, + [57] = 47, + [58] = 47, + [59] = 55, + [60] = 54, + [61] = 40, + [62] = 44, + [63] = 47, + [64] = 64, + [65] = 40, + [66] = 48, + [67] = 56, + [68] = 46, + [69] = 64, + [70] = 43, + [71] = 47, + [72] = 40, + [73] = 47, + [74] = 53, + [75] = 40, [76] = 76, - [77] = 76, + [77] = 77, [78] = 76, [79] = 76, [80] = 76, @@ -2233,246 +2248,246 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [82] = 76, [83] = 76, [84] = 76, - [85] = 85, + [85] = 76, [86] = 86, [87] = 86, [88] = 88, - [89] = 88, + [89] = 89, [90] = 88, [91] = 91, [92] = 91, - [93] = 88, + [93] = 89, [94] = 91, [95] = 95, - [96] = 88, - [97] = 95, - [98] = 95, + [96] = 91, + [97] = 88, + [98] = 89, [99] = 95, [100] = 95, - [101] = 88, + [101] = 89, [102] = 91, - [103] = 103, - [104] = 95, - [105] = 88, - [106] = 95, - [107] = 91, - [108] = 91, - [109] = 88, + [103] = 91, + [104] = 91, + [105] = 91, + [106] = 88, + [107] = 89, + [108] = 88, + [109] = 89, [110] = 95, - [111] = 91, + [111] = 95, [112] = 95, - [113] = 91, - [114] = 88, - [115] = 91, - [116] = 116, - [117] = 117, - [118] = 116, - [119] = 119, - [120] = 119, - [121] = 121, - [122] = 117, - [123] = 116, + [113] = 95, + [114] = 95, + [115] = 88, + [116] = 89, + [117] = 91, + [118] = 118, + [119] = 95, + [120] = 89, + [121] = 89, + [122] = 122, + [123] = 122, [124] = 124, - [125] = 121, - [126] = 117, - [127] = 117, - [128] = 116, - [129] = 117, - [130] = 119, - [131] = 116, - [132] = 119, - [133] = 119, - [134] = 119, - [135] = 117, - [136] = 121, - [137] = 117, - [138] = 117, - [139] = 116, - [140] = 116, - [141] = 119, - [142] = 119, - [143] = 121, - [144] = 121, - [145] = 121, - [146] = 119, - [147] = 116, - [148] = 117, - [149] = 116, + [125] = 122, + [126] = 126, + [127] = 126, + [128] = 122, + [129] = 122, + [130] = 130, + [131] = 122, + [132] = 130, + [133] = 130, + [134] = 126, + [135] = 130, + [136] = 122, + [137] = 122, + [138] = 130, + [139] = 130, + [140] = 122, + [141] = 126, + [142] = 126, + [143] = 130, + [144] = 126, + [145] = 126, + [146] = 130, + [147] = 126, + [148] = 130, + [149] = 126, [150] = 150, [151] = 151, - [152] = 151, + [152] = 152, [153] = 153, - [154] = 154, - [155] = 151, + [154] = 153, + [155] = 152, [156] = 150, - [157] = 150, - [158] = 153, - [159] = 153, - [160] = 154, - [161] = 154, - [162] = 151, - [163] = 153, - [164] = 151, - [165] = 154, - [166] = 151, + [157] = 157, + [158] = 150, + [159] = 150, + [160] = 151, + [161] = 150, + [162] = 157, + [163] = 152, + [164] = 153, + [165] = 153, + [166] = 157, [167] = 150, - [168] = 153, - [169] = 150, + [168] = 150, + [169] = 152, [170] = 153, - [171] = 150, - [172] = 151, - [173] = 154, - [174] = 154, - [175] = 150, - [176] = 153, - [177] = 154, - [178] = 154, - [179] = 179, - [180] = 154, - [181] = 150, - [182] = 150, + [171] = 157, + [172] = 152, + [173] = 152, + [174] = 157, + [175] = 153, + [176] = 176, + [177] = 157, + [178] = 178, + [179] = 157, + [180] = 157, + [181] = 152, + [182] = 157, [183] = 153, - [184] = 184, + [184] = 150, [185] = 151, - [186] = 153, + [186] = 152, [187] = 151, - [188] = 188, - [189] = 189, - [190] = 190, - [191] = 189, - [192] = 192, - [193] = 193, + [188] = 151, + [189] = 153, + [190] = 153, + [191] = 152, + [192] = 150, + [193] = 151, [194] = 194, [195] = 195, - [196] = 192, - [197] = 192, - [198] = 193, + [196] = 196, + [197] = 197, + [198] = 198, [199] = 199, - [200] = 193, - [201] = 194, - [202] = 194, - [203] = 189, - [204] = 192, - [205] = 193, - [206] = 194, - [207] = 189, - [208] = 192, - [209] = 193, - [210] = 189, - [211] = 194, - [212] = 189, - [213] = 192, - [214] = 214, - [215] = 193, - [216] = 216, - [217] = 192, - [218] = 193, - [219] = 199, - [220] = 194, - [221] = 189, - [222] = 193, - [223] = 223, - [224] = 194, - [225] = 192, - [226] = 193, - [227] = 194, - [228] = 223, - [229] = 189, - [230] = 192, - [231] = 189, - [232] = 193, - [233] = 189, - [234] = 194, - [235] = 194, - [236] = 189, - [237] = 189, - [238] = 190, - [239] = 199, - [240] = 192, - [241] = 193, - [242] = 190, - [243] = 199, - [244] = 223, - [245] = 190, - [246] = 193, - [247] = 247, - [248] = 248, - [249] = 190, - [250] = 190, - [251] = 192, + [200] = 195, + [201] = 201, + [202] = 199, + [203] = 201, + [204] = 198, + [205] = 201, + [206] = 198, + [207] = 196, + [208] = 196, + [209] = 196, + [210] = 201, + [211] = 197, + [212] = 212, + [213] = 213, + [214] = 198, + [215] = 201, + [216] = 212, + [217] = 196, + [218] = 195, + [219] = 196, + [220] = 198, + [221] = 196, + [222] = 201, + [223] = 197, + [224] = 224, + [225] = 225, + [226] = 212, + [227] = 212, + [228] = 199, + [229] = 212, + [230] = 212, + [231] = 198, + [232] = 196, + [233] = 199, + [234] = 196, + [235] = 212, + [236] = 195, + [237] = 212, + [238] = 198, + [239] = 201, + [240] = 197, + [241] = 212, + [242] = 196, + [243] = 201, + [244] = 198, + [245] = 198, + [246] = 212, + [247] = 196, + [248] = 201, + [249] = 196, + [250] = 212, + [251] = 198, [252] = 199, - [253] = 190, - [254] = 190, - [255] = 192, - [256] = 190, - [257] = 192, - [258] = 193, - [259] = 189, - [260] = 193, - [261] = 223, - [262] = 194, - [263] = 194, - [264] = 194, - [265] = 189, - [266] = 193, - [267] = 192, - [268] = 189, - [269] = 194, - [270] = 193, - [271] = 192, - [272] = 189, - [273] = 194, - [274] = 189, - [275] = 193, - [276] = 192, - [277] = 192, - [278] = 189, - [279] = 192, - [280] = 194, - [281] = 193, - [282] = 193, - [283] = 192, - [284] = 189, - [285] = 194, - [286] = 194, - [287] = 223, - [288] = 193, - [289] = 192, - [290] = 194, - [291] = 189, - [292] = 199, - [293] = 293, - [294] = 223, - [295] = 189, - [296] = 194, - [297] = 223, - [298] = 192, - [299] = 193, - [300] = 199, - [301] = 194, - [302] = 223, - [303] = 194, - [304] = 189, - [305] = 199, - [306] = 192, - [307] = 223, - [308] = 193, - [309] = 199, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 311, - [314] = 314, - [315] = 310, + [253] = 199, + [254] = 195, + [255] = 212, + [256] = 212, + [257] = 257, + [258] = 198, + [259] = 197, + [260] = 197, + [261] = 201, + [262] = 201, + [263] = 197, + [264] = 198, + [265] = 199, + [266] = 198, + [267] = 196, + [268] = 199, + [269] = 201, + [270] = 212, + [271] = 271, + [272] = 212, + [273] = 195, + [274] = 196, + [275] = 212, + [276] = 196, + [277] = 198, + [278] = 201, + [279] = 201, + [280] = 198, + [281] = 198, + [282] = 195, + [283] = 196, + [284] = 201, + [285] = 197, + [286] = 212, + [287] = 196, + [288] = 212, + [289] = 199, + [290] = 196, + [291] = 201, + [292] = 198, + [293] = 201, + [294] = 195, + [295] = 212, + [296] = 195, + [297] = 201, + [298] = 201, + [299] = 198, + [300] = 300, + [301] = 198, + [302] = 196, + [303] = 197, + [304] = 196, + [305] = 212, + [306] = 201, + [307] = 198, + [308] = 212, + [309] = 196, + [310] = 196, + [311] = 198, + [312] = 212, + [313] = 198, + [314] = 201, + [315] = 201, [316] = 316, - [317] = 317, + [317] = 316, [318] = 318, [319] = 319, [320] = 320, [321] = 321, [322] = 322, [323] = 323, - [324] = 324, + [324] = 319, [325] = 325, [326] = 326, [327] = 327, @@ -2487,2931 +2502,2957 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [336] = 336, [337] = 337, [338] = 338, - [339] = 339, - [340] = 339, - [341] = 341, - [342] = 337, - [343] = 343, - [344] = 338, - [345] = 336, - [346] = 335, - [347] = 327, - [348] = 348, - [349] = 324, - [350] = 320, - [351] = 318, - [352] = 343, - [353] = 353, - [354] = 334, - [355] = 353, - [356] = 314, - [357] = 316, - [358] = 341, - [359] = 359, - [360] = 333, - [361] = 332, - [362] = 331, - [363] = 330, - [364] = 329, - [365] = 365, - [366] = 328, - [367] = 348, - [368] = 325, - [369] = 359, - [370] = 365, - [371] = 319, - [372] = 321, - [373] = 323, - [374] = 322, - [375] = 326, - [376] = 317, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 377, - [381] = 379, - [382] = 378, - [383] = 378, - [384] = 378, - [385] = 385, - [386] = 378, - [387] = 378, - [388] = 312, + [339] = 325, + [340] = 340, + [341] = 325, + [342] = 327, + [343] = 325, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 325, + [348] = 325, + [349] = 325, + [350] = 325, + [351] = 351, + [352] = 337, + [353] = 336, + [354] = 333, + [355] = 355, + [356] = 356, + [357] = 325, + [358] = 336, + [359] = 325, + [360] = 325, + [361] = 337, + [362] = 338, + [363] = 363, + [364] = 364, + [365] = 328, + [366] = 366, + [367] = 327, + [368] = 344, + [369] = 345, + [370] = 370, + [371] = 326, + [372] = 319, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 333, + [378] = 336, + [379] = 337, + [380] = 338, + [381] = 322, + [382] = 327, + [383] = 344, + [384] = 345, + [385] = 320, + [386] = 386, + [387] = 387, + [388] = 321, [389] = 327, - [390] = 390, - [391] = 391, - [392] = 327, - [393] = 390, - [394] = 391, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 400, - [402] = 399, - [403] = 403, - [404] = 404, - [405] = 400, - [406] = 406, - [407] = 407, - [408] = 395, + [390] = 333, + [391] = 334, + [392] = 392, + [393] = 330, + [394] = 336, + [395] = 337, + [396] = 338, + [397] = 345, + [398] = 340, + [399] = 327, + [400] = 392, + [401] = 344, + [402] = 345, + [403] = 370, + [404] = 333, + [405] = 344, + [406] = 344, + [407] = 327, + [408] = 325, [409] = 409, [410] = 410, - [411] = 411, - [412] = 412, - [413] = 413, - [414] = 414, + [411] = 338, + [412] = 392, + [413] = 333, + [414] = 337, [415] = 415, - [416] = 407, + [416] = 336, [417] = 417, - [418] = 399, - [419] = 406, - [420] = 399, - [421] = 399, - [422] = 399, - [423] = 399, - [424] = 395, - [425] = 399, - [426] = 409, - [427] = 399, - [428] = 399, - [429] = 399, - [430] = 399, - [431] = 399, - [432] = 432, + [418] = 337, + [419] = 419, + [420] = 327, + [421] = 327, + [422] = 422, + [423] = 338, + [424] = 327, + [425] = 327, + [426] = 327, + [427] = 344, + [428] = 345, + [429] = 409, + [430] = 332, + [431] = 327, + [432] = 333, [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 397, - [438] = 399, - [439] = 439, - [440] = 440, - [441] = 432, - [442] = 409, - [443] = 433, - [444] = 434, - [445] = 435, - [446] = 436, - [447] = 397, - [448] = 448, - [449] = 399, - [450] = 439, - [451] = 403, - [452] = 452, - [453] = 440, - [454] = 432, - [455] = 433, - [456] = 434, - [457] = 457, - [458] = 435, - [459] = 436, - [460] = 460, - [461] = 397, - [462] = 462, - [463] = 399, - [464] = 439, - [465] = 440, - [466] = 432, - [467] = 433, - [468] = 434, - [469] = 435, - [470] = 436, - [471] = 397, - [472] = 399, - [473] = 439, - [474] = 440, - [475] = 432, - [476] = 436, - [477] = 433, - [478] = 434, - [479] = 435, - [480] = 436, - [481] = 435, - [482] = 397, - [483] = 399, - [484] = 439, - [485] = 440, - [486] = 440, - [487] = 432, - [488] = 433, - [489] = 434, - [490] = 435, - [491] = 436, - [492] = 397, - [493] = 399, - [494] = 439, - [495] = 440, - [496] = 410, - [497] = 434, - [498] = 498, - [499] = 395, - [500] = 407, - [501] = 432, - [502] = 433, - [503] = 434, - [504] = 435, - [505] = 436, - [506] = 433, - [507] = 397, - [508] = 399, - [509] = 439, - [510] = 440, - [511] = 403, - [512] = 432, - [513] = 412, - [514] = 400, - [515] = 407, - [516] = 395, - [517] = 410, - [518] = 413, - [519] = 414, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 460, - [524] = 524, - [525] = 411, - [526] = 396, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, - [535] = 535, + [434] = 338, + [435] = 336, + [436] = 337, + [437] = 338, + [438] = 327, + [439] = 325, + [440] = 410, + [441] = 338, + [442] = 327, + [443] = 344, + [444] = 345, + [445] = 327, + [446] = 346, + [447] = 333, + [448] = 346, + [449] = 337, + [450] = 327, + [451] = 336, + [452] = 337, + [453] = 338, + [454] = 327, + [455] = 336, + [456] = 456, + [457] = 327, + [458] = 344, + [459] = 332, + [460] = 345, + [461] = 331, + [462] = 335, + [463] = 337, + [464] = 328, + [465] = 336, + [466] = 326, + [467] = 333, + [468] = 333, + [469] = 319, + [470] = 336, + [471] = 337, + [472] = 338, + [473] = 330, + [474] = 328, + [475] = 322, + [476] = 327, + [477] = 326, + [478] = 344, + [479] = 345, + [480] = 321, + [481] = 319, + [482] = 409, + [483] = 322, + [484] = 321, + [485] = 322, + [486] = 422, + [487] = 321, + [488] = 333, + [489] = 392, + [490] = 336, + [491] = 330, + [492] = 337, + [493] = 338, + [494] = 332, + [495] = 327, + [496] = 344, + [497] = 345, + [498] = 332, + [499] = 410, + [500] = 325, + [501] = 319, + [502] = 325, + [503] = 333, + [504] = 410, + [505] = 330, + [506] = 392, + [507] = 332, + [508] = 331, + [509] = 392, + [510] = 326, + [511] = 511, + [512] = 332, + [513] = 332, + [514] = 325, + [515] = 327, + [516] = 328, + [517] = 333, + [518] = 518, + [519] = 333, + [520] = 336, + [521] = 321, + [522] = 322, + [523] = 376, + [524] = 373, + [525] = 332, + [526] = 374, + [527] = 319, + [528] = 338, + [529] = 326, + [530] = 344, + [531] = 345, + [532] = 336, + [533] = 337, + [534] = 328, + [535] = 325, [536] = 536, - [537] = 412, - [538] = 538, - [539] = 413, - [540] = 414, + [537] = 537, + [538] = 331, + [539] = 539, + [540] = 387, [541] = 541, - [542] = 542, - [543] = 541, - [544] = 542, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 396, - [551] = 414, - [552] = 413, - [553] = 412, + [542] = 338, + [543] = 330, + [544] = 544, + [545] = 332, + [546] = 331, + [547] = 386, + [548] = 320, + [549] = 370, + [550] = 332, + [551] = 333, + [552] = 410, + [553] = 325, [554] = 554, - [555] = 530, - [556] = 536, - [557] = 535, - [558] = 534, - [559] = 533, - [560] = 532, - [561] = 531, - [562] = 530, - [563] = 542, - [564] = 531, - [565] = 532, - [566] = 533, - [567] = 541, - [568] = 414, - [569] = 534, - [570] = 413, - [571] = 412, - [572] = 535, - [573] = 536, - [574] = 536, - [575] = 541, - [576] = 535, - [577] = 542, - [578] = 534, - [579] = 432, - [580] = 433, - [581] = 533, - [582] = 434, - [583] = 532, - [584] = 435, - [585] = 531, - [586] = 530, - [587] = 396, - [588] = 411, - [589] = 436, - [590] = 590, - [591] = 397, - [592] = 399, - [593] = 439, - [594] = 403, - [595] = 400, - [596] = 440, - [597] = 403, - [598] = 396, - [599] = 403, - [600] = 411, - [601] = 410, - [602] = 417, - [603] = 407, - [604] = 395, - [605] = 409, - [606] = 409, - [607] = 395, - [608] = 407, - [609] = 410, - [610] = 400, - [611] = 410, - [612] = 411, - [613] = 403, - [614] = 396, - [615] = 403, - [616] = 530, - [617] = 531, - [618] = 403, - [619] = 532, - [620] = 403, - [621] = 403, - [622] = 403, - [623] = 403, - [624] = 460, - [625] = 403, + [555] = 511, + [556] = 345, + [557] = 344, + [558] = 327, + [559] = 386, + [560] = 410, + [561] = 366, + [562] = 355, + [563] = 375, + [564] = 374, + [565] = 415, + [566] = 417, + [567] = 419, + [568] = 419, + [569] = 417, + [570] = 518, + [571] = 415, + [572] = 332, + [573] = 375, + [574] = 392, + [575] = 320, + [576] = 355, + [577] = 366, + [578] = 327, + [579] = 344, + [580] = 325, + [581] = 321, + [582] = 582, + [583] = 345, + [584] = 322, + [585] = 539, + [586] = 345, + [587] = 345, + [588] = 541, + [589] = 327, + [590] = 326, + [591] = 329, + [592] = 328, + [593] = 422, + [594] = 409, + [595] = 330, + [596] = 344, + [597] = 331, + [598] = 332, + [599] = 582, + [600] = 600, + [601] = 344, + [602] = 600, + [603] = 600, + [604] = 327, + [605] = 345, + [606] = 606, + [607] = 366, + [608] = 600, + [609] = 331, + [610] = 600, + [611] = 355, + [612] = 336, + [613] = 337, + [614] = 346, + [615] = 375, + [616] = 374, + [617] = 410, + [618] = 544, + [619] = 415, + [620] = 338, + [621] = 417, + [622] = 419, + [623] = 338, + [624] = 332, + [625] = 325, [626] = 626, [627] = 627, - [628] = 533, - [629] = 460, - [630] = 534, - [631] = 535, - [632] = 536, - [633] = 412, - [634] = 409, - [635] = 395, - [636] = 407, - [637] = 413, - [638] = 403, - [639] = 414, - [640] = 554, - [641] = 541, - [642] = 542, - [643] = 627, - [644] = 549, - [645] = 460, - [646] = 403, - [647] = 548, - [648] = 547, - [649] = 546, - [650] = 542, - [651] = 460, - [652] = 545, - [653] = 542, - [654] = 403, - [655] = 541, + [628] = 422, + [629] = 409, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 630, + [634] = 634, + [635] = 600, + [636] = 632, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 320, + [641] = 333, + [642] = 332, + [643] = 346, + [644] = 337, + [645] = 336, + [646] = 646, + [647] = 386, + [648] = 648, + [649] = 649, + [650] = 320, + [651] = 336, + [652] = 337, + [653] = 346, + [654] = 654, + [655] = 331, [656] = 656, [657] = 657, - [658] = 460, - [659] = 403, - [660] = 414, + [658] = 658, + [659] = 338, + [660] = 660, [661] = 661, - [662] = 541, - [663] = 414, - [664] = 413, - [665] = 413, - [666] = 400, - [667] = 412, - [668] = 400, - [669] = 536, - [670] = 535, - [671] = 534, - [672] = 412, - [673] = 533, - [674] = 536, - [675] = 532, - [676] = 535, - [677] = 533, - [678] = 460, - [679] = 407, - [680] = 403, - [681] = 534, - [682] = 531, - [683] = 530, - [684] = 439, - [685] = 395, - [686] = 409, - [687] = 531, - [688] = 530, - [689] = 410, - [690] = 460, - [691] = 403, - [692] = 412, - [693] = 412, - [694] = 554, - [695] = 529, - [696] = 411, - [697] = 412, - [698] = 396, - [699] = 530, - [700] = 531, - [701] = 412, - [702] = 554, - [703] = 532, - [704] = 412, - [705] = 532, - [706] = 533, - [707] = 534, - [708] = 412, - [709] = 535, - [710] = 536, - [711] = 412, - [712] = 413, - [713] = 414, - [714] = 528, - [715] = 412, - [716] = 527, - [717] = 541, - [718] = 542, - [719] = 396, - [720] = 412, - [721] = 411, - [722] = 412, - [723] = 723, - [724] = 724, - [725] = 399, - [726] = 412, - [727] = 627, - [728] = 524, - [729] = 460, - [730] = 403, - [731] = 400, - [732] = 732, - [733] = 407, - [734] = 395, - [735] = 410, - [736] = 412, - [737] = 542, - [738] = 541, - [739] = 413, - [740] = 414, - [741] = 400, - [742] = 522, - [743] = 407, - [744] = 395, - [745] = 410, - [746] = 414, - [747] = 413, - [748] = 412, - [749] = 410, - [750] = 412, - [751] = 536, - [752] = 535, - [753] = 534, - [754] = 533, - [755] = 532, - [756] = 531, - [757] = 530, - [758] = 413, - [759] = 414, - [760] = 554, - [761] = 462, - [762] = 400, - [763] = 407, - [764] = 395, - [765] = 410, - [766] = 412, - [767] = 413, - [768] = 414, - [769] = 457, - [770] = 400, - [771] = 409, - [772] = 400, - [773] = 407, - [774] = 395, - [775] = 410, - [776] = 412, - [777] = 396, - [778] = 411, - [779] = 413, - [780] = 414, - [781] = 554, - [782] = 395, - [783] = 400, - [784] = 407, - [785] = 395, - [786] = 410, - [787] = 787, - [788] = 412, - [789] = 413, - [790] = 414, - [791] = 407, - [792] = 400, - [793] = 415, - [794] = 407, - [795] = 395, - [796] = 410, - [797] = 407, - [798] = 412, - [799] = 410, - [800] = 413, - [801] = 414, - [802] = 395, - [803] = 409, - [804] = 400, - [805] = 805, - [806] = 400, - [807] = 407, - [808] = 395, - [809] = 410, - [810] = 398, - [811] = 412, - [812] = 413, - [813] = 414, - [814] = 410, - [815] = 409, - [816] = 400, - [817] = 407, - [818] = 407, - [819] = 395, - [820] = 410, - [821] = 412, - [822] = 413, - [823] = 414, - [824] = 542, - [825] = 400, - [826] = 541, - [827] = 407, - [828] = 395, - [829] = 410, - [830] = 830, - [831] = 414, - [832] = 412, - [833] = 413, - [834] = 414, - [835] = 413, - [836] = 412, - [837] = 400, - [838] = 536, - [839] = 400, - [840] = 787, - [841] = 841, - [842] = 407, - [843] = 395, - [844] = 535, - [845] = 845, - [846] = 410, - [847] = 534, - [848] = 830, - [849] = 732, - [850] = 412, - [851] = 413, - [852] = 661, - [853] = 414, - [854] = 396, - [855] = 533, - [856] = 841, - [857] = 460, - [858] = 403, - [859] = 411, - [860] = 532, - [861] = 531, - [862] = 530, - [863] = 411, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 422, + [668] = 666, + [669] = 665, + [670] = 409, + [671] = 422, + [672] = 409, + [673] = 333, + [674] = 422, + [675] = 627, + [676] = 676, + [677] = 419, + [678] = 417, + [679] = 415, + [680] = 374, + [681] = 375, + [682] = 355, + [683] = 366, + [684] = 327, + [685] = 344, + [686] = 345, + [687] = 320, + [688] = 386, + [689] = 664, + [690] = 663, + [691] = 419, + [692] = 417, + [693] = 662, + [694] = 661, + [695] = 660, + [696] = 325, + [697] = 332, + [698] = 415, + [699] = 338, + [700] = 419, + [701] = 417, + [702] = 374, + [703] = 415, + [704] = 704, + [705] = 374, + [706] = 375, + [707] = 375, + [708] = 355, + [709] = 355, + [710] = 366, + [711] = 711, + [712] = 366, + [713] = 713, + [714] = 714, + [715] = 327, + [716] = 344, + [717] = 345, + [718] = 656, + [719] = 654, + [720] = 720, + [721] = 333, + [722] = 722, + [723] = 346, + [724] = 320, + [725] = 386, + [726] = 337, + [727] = 727, + [728] = 336, + [729] = 729, + [730] = 727, + [731] = 648, + [732] = 722, + [733] = 333, + [734] = 332, + [735] = 729, + [736] = 336, + [737] = 337, + [738] = 346, + [739] = 720, + [740] = 714, + [741] = 332, + [742] = 711, + [743] = 332, + [744] = 713, + [745] = 386, + [746] = 364, + [747] = 704, + [748] = 332, + [749] = 330, + [750] = 333, + [751] = 332, + [752] = 386, + [753] = 336, + [754] = 345, + [755] = 344, + [756] = 327, + [757] = 338, + [758] = 337, + [759] = 366, + [760] = 355, + [761] = 375, + [762] = 374, + [763] = 415, + [764] = 417, + [765] = 419, + [766] = 331, + [767] = 346, + [768] = 320, + [769] = 345, + [770] = 344, + [771] = 327, + [772] = 366, + [773] = 355, + [774] = 375, + [775] = 330, + [776] = 374, + [777] = 415, + [778] = 328, + [779] = 417, + [780] = 646, + [781] = 326, + [782] = 392, + [783] = 419, + [784] = 338, + [785] = 634, + [786] = 422, + [787] = 409, + [788] = 410, + [789] = 325, + [790] = 631, + [791] = 409, + [792] = 422, + [793] = 676, + [794] = 331, + [795] = 422, + [796] = 329, + [797] = 409, + [798] = 626, + [799] = 332, + [800] = 409, + [801] = 422, + [802] = 410, + [803] = 331, + [804] = 338, + [805] = 658, + [806] = 657, + [807] = 419, + [808] = 319, + [809] = 386, + [810] = 417, + [811] = 338, + [812] = 419, + [813] = 417, + [814] = 415, + [815] = 374, + [816] = 375, + [817] = 355, + [818] = 366, + [819] = 606, + [820] = 327, + [821] = 821, + [822] = 322, + [823] = 344, + [824] = 345, + [825] = 415, + [826] = 320, + [827] = 346, + [828] = 337, + [829] = 336, + [830] = 386, + [831] = 328, + [832] = 554, + [833] = 374, + [834] = 375, + [835] = 355, + [836] = 366, + [837] = 327, + [838] = 344, + [839] = 321, + [840] = 345, + [841] = 346, + [842] = 337, + [843] = 336, + [844] = 320, + [845] = 386, + [846] = 846, + [847] = 333, + [848] = 370, + [849] = 649, + [850] = 333, + [851] = 321, + [852] = 392, + [853] = 322, + [854] = 319, + [855] = 326, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 859, + [863] = 863, [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 864, - [869] = 865, - [870] = 866, - [871] = 867, - [872] = 542, - [873] = 541, - [874] = 414, - [875] = 413, - [876] = 412, - [877] = 536, - [878] = 535, - [879] = 534, - [880] = 533, - [881] = 532, - [882] = 531, - [883] = 530, - [884] = 410, - [885] = 400, - [886] = 407, - [887] = 395, - [888] = 409, - [889] = 410, - [890] = 845, - [891] = 521, - [892] = 411, - [893] = 396, + [865] = 864, + [866] = 861, + [867] = 860, + [868] = 859, + [869] = 858, + [870] = 859, + [871] = 871, + [872] = 872, + [873] = 872, + [874] = 874, + [875] = 875, + [876] = 859, + [877] = 863, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 871, + [882] = 878, + [883] = 879, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 859, + [888] = 856, + [889] = 875, + [890] = 890, + [891] = 857, + [892] = 892, + [893] = 885, [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, + [895] = 874, + [896] = 880, + [897] = 892, + [898] = 890, + [899] = 886, + [900] = 894, + [901] = 884, [902] = 902, [903] = 903, - [904] = 896, - [905] = 897, - [906] = 898, - [907] = 899, - [908] = 900, - [909] = 901, - [910] = 902, - [911] = 903, - [912] = 894, - [913] = 900, + [904] = 902, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 902, + [912] = 912, + [913] = 913, [914] = 914, - [915] = 914, - [916] = 916, - [917] = 917, + [915] = 915, + [916] = 905, + [917] = 906, [918] = 918, - [919] = 919, - [920] = 920, - [921] = 916, - [922] = 917, + [919] = 902, + [920] = 913, + [921] = 914, + [922] = 915, [923] = 923, [924] = 924, [925] = 925, - [926] = 900, - [927] = 920, - [928] = 923, - [929] = 929, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 925, [930] = 930, [931] = 931, [932] = 932, - [933] = 918, - [934] = 919, - [935] = 929, - [936] = 930, - [937] = 931, - [938] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 926, + [938] = 927, [939] = 939, - [940] = 939, + [940] = 940, [941] = 941, [942] = 942, - [943] = 943, - [944] = 944, + [943] = 931, + [944] = 903, [945] = 945, - [946] = 946, + [946] = 934, [947] = 947, - [948] = 948, - [949] = 949, + [948] = 935, + [949] = 936, [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 900, + [951] = 940, + [952] = 902, + [953] = 945, + [954] = 947, [955] = 955, - [956] = 941, - [957] = 924, + [956] = 956, + [957] = 957, [958] = 958, [959] = 959, [960] = 960, [961] = 961, [962] = 962, [963] = 963, - [964] = 964, - [965] = 965, + [964] = 956, + [965] = 955, [966] = 966, - [967] = 967, - [968] = 968, - [969] = 900, + [967] = 950, + [968] = 962, + [969] = 969, [970] = 970, [971] = 971, - [972] = 925, - [973] = 968, - [974] = 971, - [975] = 970, - [976] = 942, - [977] = 967, - [978] = 966, - [979] = 895, - [980] = 965, - [981] = 964, - [982] = 961, - [983] = 960, - [984] = 958, - [985] = 963, - [986] = 955, - [987] = 962, - [988] = 959, - [989] = 953, - [990] = 952, - [991] = 951, - [992] = 948, - [993] = 950, - [994] = 949, - [995] = 946, - [996] = 947, - [997] = 945, - [998] = 944, - [999] = 943, - [1000] = 121, - [1001] = 121, - [1002] = 121, - [1003] = 121, - [1004] = 324, - [1005] = 326, - [1006] = 327, - [1007] = 311, - [1008] = 332, - [1009] = 337, - [1010] = 331, - [1011] = 330, - [1012] = 329, - [1013] = 318, - [1014] = 341, - [1015] = 378, - [1016] = 328, - [1017] = 339, - [1018] = 325, - [1019] = 378, - [1020] = 319, - [1021] = 327, - [1022] = 338, - [1023] = 378, - [1024] = 365, - [1025] = 321, - [1026] = 323, - [1027] = 322, - [1028] = 359, - [1029] = 390, - [1030] = 336, - [1031] = 348, - [1032] = 343, - [1033] = 316, - [1034] = 310, - [1035] = 335, - [1036] = 333, - [1037] = 377, - [1038] = 334, - [1039] = 317, - [1040] = 391, - [1041] = 337, - [1042] = 320, - [1043] = 353, - [1044] = 314, - [1045] = 379, - [1046] = 865, - [1047] = 457, - [1048] = 864, - [1049] = 398, - [1050] = 547, - [1051] = 554, - [1052] = 546, - [1053] = 866, - [1054] = 867, - [1055] = 548, - [1056] = 527, - [1057] = 462, - [1058] = 545, - [1059] = 528, - [1060] = 549, - [1061] = 529, - [1062] = 554, - [1063] = 527, - [1064] = 524, - [1065] = 522, - [1066] = 521, - [1067] = 415, - [1068] = 554, - [1069] = 903, - [1070] = 967, - [1071] = 896, - [1072] = 953, - [1073] = 952, - [1074] = 951, - [1075] = 950, - [1076] = 949, - [1077] = 929, - [1078] = 864, - [1079] = 962, - [1080] = 900, - [1081] = 899, - [1082] = 963, - [1083] = 919, - [1084] = 900, - [1085] = 865, - [1086] = 901, - [1087] = 965, - [1088] = 966, - [1089] = 866, - [1090] = 867, - [1091] = 918, - [1092] = 946, - [1093] = 902, - [1094] = 945, - [1095] = 944, - [1096] = 943, - [1097] = 864, - [1098] = 897, - [1099] = 942, - [1100] = 941, - [1101] = 947, - [1102] = 865, - [1103] = 939, - [1104] = 866, - [1105] = 932, - [1106] = 931, - [1107] = 930, - [1108] = 948, - [1109] = 959, - [1110] = 968, - [1111] = 971, - [1112] = 900, - [1113] = 970, - [1114] = 955, - [1115] = 894, - [1116] = 958, - [1117] = 914, - [1118] = 867, - [1119] = 916, - [1120] = 917, - [1121] = 920, - [1122] = 923, - [1123] = 924, - [1124] = 964, - [1125] = 961, - [1126] = 925, - [1127] = 960, - [1128] = 895, - [1129] = 898, - [1130] = 121, - [1131] = 121, - [1132] = 121, - [1133] = 365, - [1134] = 348, - [1135] = 121, - [1136] = 391, - [1137] = 365, - [1138] = 391, - [1139] = 121, - [1140] = 348, - [1141] = 359, - [1142] = 121, - [1143] = 390, - [1144] = 390, - [1145] = 359, - [1146] = 1146, - [1147] = 1146, - [1148] = 121, - [1149] = 1149, - [1150] = 121, - [1151] = 1151, - [1152] = 1149, - [1153] = 311, - [1154] = 336, - [1155] = 353, - [1156] = 310, - [1157] = 1157, - [1158] = 121, - [1159] = 334, - [1160] = 1151, - [1161] = 320, - [1162] = 322, - [1163] = 331, - [1164] = 353, - [1165] = 379, - [1166] = 317, - [1167] = 1167, - [1168] = 310, - [1169] = 121, - [1170] = 866, - [1171] = 867, - [1172] = 1172, - [1173] = 348, - [1174] = 359, - [1175] = 1175, - [1176] = 320, - [1177] = 121, - [1178] = 311, - [1179] = 1175, - [1180] = 323, - [1181] = 365, - [1182] = 1157, - [1183] = 325, - [1184] = 328, - [1185] = 329, - [1186] = 330, - [1187] = 864, - [1188] = 1167, - [1189] = 332, - [1190] = 333, - [1191] = 378, - [1192] = 334, - [1193] = 378, - [1194] = 121, - [1195] = 341, - [1196] = 1196, - [1197] = 865, - [1198] = 378, - [1199] = 377, - [1200] = 121, - [1201] = 327, - [1202] = 390, - [1203] = 391, - [1204] = 336, - [1205] = 121, - [1206] = 1172, - [1207] = 1207, - [1208] = 335, - [1209] = 554, - [1210] = 327, - [1211] = 1207, - [1212] = 925, - [1213] = 398, - [1214] = 965, - [1215] = 546, - [1216] = 955, - [1217] = 457, - [1218] = 377, - [1219] = 867, - [1220] = 864, - [1221] = 865, - [1222] = 319, - [1223] = 121, - [1224] = 866, - [1225] = 316, - [1226] = 321, - [1227] = 971, - [1228] = 970, - [1229] = 966, - [1230] = 964, - [1231] = 528, - [1232] = 121, - [1233] = 948, - [1234] = 961, - [1235] = 121, - [1236] = 462, - [1237] = 554, - [1238] = 547, - [1239] = 967, - [1240] = 960, - [1241] = 958, - [1242] = 121, - [1243] = 545, - [1244] = 963, - [1245] = 962, - [1246] = 326, - [1247] = 947, - [1248] = 899, - [1249] = 953, - [1250] = 379, - [1251] = 121, - [1252] = 900, - [1253] = 554, - [1254] = 121, - [1255] = 918, - [1256] = 1256, - [1257] = 929, - [1258] = 968, - [1259] = 945, - [1260] = 415, - [1261] = 314, - [1262] = 930, - [1263] = 931, - [1264] = 932, - [1265] = 895, - [1266] = 919, - [1267] = 554, - [1268] = 939, - [1269] = 924, - [1270] = 941, - [1271] = 923, - [1272] = 920, - [1273] = 917, - [1274] = 959, - [1275] = 916, - [1276] = 529, - [1277] = 343, - [1278] = 121, - [1279] = 896, - [1280] = 338, - [1281] = 897, - [1282] = 914, - [1283] = 898, - [1284] = 952, - [1285] = 951, - [1286] = 549, - [1287] = 942, - [1288] = 950, - [1289] = 1256, - [1290] = 318, - [1291] = 339, - [1292] = 522, - [1293] = 337, - [1294] = 521, - [1295] = 894, - [1296] = 943, - [1297] = 949, - [1298] = 901, - [1299] = 902, - [1300] = 548, - [1301] = 903, - [1302] = 946, - [1303] = 944, - [1304] = 324, - [1305] = 939, - [1306] = 325, - [1307] = 970, - [1308] = 457, - [1309] = 462, - [1310] = 335, - [1311] = 964, - [1312] = 971, - [1313] = 961, - [1314] = 968, - [1315] = 967, - [1316] = 960, - [1317] = 958, - [1318] = 966, - [1319] = 965, - [1320] = 955, - [1321] = 948, - [1322] = 947, - [1323] = 963, - [1324] = 900, - [1325] = 365, - [1326] = 524, - [1327] = 962, - [1328] = 359, - [1329] = 415, - [1330] = 895, - [1331] = 527, - [1332] = 925, - [1333] = 959, - [1334] = 327, - [1335] = 953, - [1336] = 952, - [1337] = 528, - [1338] = 378, - [1339] = 924, - [1340] = 923, - [1341] = 951, - [1342] = 920, - [1343] = 900, - [1344] = 917, - [1345] = 916, - [1346] = 529, - [1347] = 914, - [1348] = 950, - [1349] = 949, - [1350] = 398, - [1351] = 348, - [1352] = 946, - [1353] = 341, - [1354] = 944, - [1355] = 943, - [1356] = 942, - [1357] = 941, - [1358] = 932, - [1359] = 378, - [1360] = 931, - [1361] = 894, - [1362] = 930, - [1363] = 545, - [1364] = 546, - [1365] = 547, - [1366] = 903, - [1367] = 548, - [1368] = 902, - [1369] = 901, - [1370] = 549, - [1371] = 900, - [1372] = 899, - [1373] = 898, - [1374] = 929, - [1375] = 919, - [1376] = 897, - [1377] = 896, - [1378] = 378, - [1379] = 121, - [1380] = 918, - [1381] = 317, - [1382] = 945, - [1383] = 333, - [1384] = 332, - [1385] = 391, - [1386] = 390, - [1387] = 327, - [1388] = 331, - [1389] = 330, - [1390] = 323, - [1391] = 322, - [1392] = 329, - [1393] = 328, - [1394] = 320, - [1395] = 319, - [1396] = 316, - [1397] = 339, - [1398] = 311, - [1399] = 554, - [1400] = 378, - [1401] = 121, - [1402] = 1402, - [1403] = 321, - [1404] = 864, - [1405] = 353, - [1406] = 319, - [1407] = 317, - [1408] = 327, - [1409] = 865, - [1410] = 324, + [972] = 970, + [973] = 966, + [974] = 963, + [975] = 960, + [976] = 902, + [977] = 909, + [978] = 958, + [979] = 928, + [980] = 961, + [981] = 959, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 969, + [986] = 986, + [987] = 942, + [988] = 988, + [989] = 957, + [990] = 971, + [991] = 991, + [992] = 982, + [993] = 983, + [994] = 984, + [995] = 986, + [996] = 988, + [997] = 991, + [998] = 907, + [999] = 939, + [1000] = 908, + [1001] = 933, + [1002] = 910, + [1003] = 932, + [1004] = 912, + [1005] = 918, + [1006] = 923, + [1007] = 941, + [1008] = 924, + [1009] = 930, + [1010] = 151, + [1011] = 151, + [1012] = 151, + [1013] = 151, + [1014] = 632, + [1015] = 649, + [1016] = 627, + [1017] = 658, + [1018] = 370, + [1019] = 714, + [1020] = 654, + [1021] = 630, + [1022] = 554, + [1023] = 657, + [1024] = 340, + [1025] = 660, + [1026] = 661, + [1027] = 662, + [1028] = 606, + [1029] = 663, + [1030] = 664, + [1031] = 665, + [1032] = 666, + [1033] = 711, + [1034] = 656, + [1035] = 334, + [1036] = 634, + [1037] = 626, + [1038] = 648, + [1039] = 631, + [1040] = 634, + [1041] = 676, + [1042] = 646, + [1043] = 600, + [1044] = 600, + [1045] = 600, + [1046] = 713, + [1047] = 544, + [1048] = 541, + [1049] = 729, + [1050] = 727, + [1051] = 722, + [1052] = 720, + [1053] = 539, + [1054] = 370, + [1055] = 704, + [1056] = 874, + [1057] = 879, + [1058] = 859, + [1059] = 859, + [1060] = 890, + [1061] = 861, + [1062] = 864, + [1063] = 859, + [1064] = 871, + [1065] = 860, + [1066] = 858, + [1067] = 880, + [1068] = 886, + [1069] = 878, + [1070] = 856, + [1071] = 885, + [1072] = 863, + [1073] = 857, + [1074] = 890, + [1075] = 872, + [1076] = 884, + [1077] = 875, + [1078] = 894, + [1079] = 892, + [1080] = 966, + [1081] = 971, + [1082] = 913, + [1083] = 914, + [1084] = 983, + [1085] = 988, + [1086] = 991, + [1087] = 915, + [1088] = 907, + [1089] = 908, + [1090] = 982, + [1091] = 910, + [1092] = 902, + [1093] = 925, + [1094] = 912, + [1095] = 926, + [1096] = 927, + [1097] = 931, + [1098] = 934, + [1099] = 935, + [1100] = 936, + [1101] = 940, + [1102] = 945, + [1103] = 947, + [1104] = 984, + [1105] = 894, + [1106] = 958, + [1107] = 885, + [1108] = 863, + [1109] = 884, + [1110] = 894, + [1111] = 961, + [1112] = 969, + [1113] = 928, + [1114] = 970, + [1115] = 906, + [1116] = 963, + [1117] = 884, + [1118] = 909, + [1119] = 957, + [1120] = 932, + [1121] = 933, + [1122] = 863, + [1123] = 885, + [1124] = 918, + [1125] = 902, + [1126] = 923, + [1127] = 902, + [1128] = 924, + [1129] = 930, + [1130] = 941, + [1131] = 986, + [1132] = 959, + [1133] = 960, + [1134] = 962, + [1135] = 956, + [1136] = 955, + [1137] = 905, + [1138] = 950, + [1139] = 903, + [1140] = 942, + [1141] = 939, + [1142] = 151, + [1143] = 151, + [1144] = 151, + [1145] = 544, + [1146] = 539, + [1147] = 544, + [1148] = 151, + [1149] = 340, + [1150] = 334, + [1151] = 541, + [1152] = 539, + [1153] = 151, + [1154] = 151, + [1155] = 340, + [1156] = 334, + [1157] = 541, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1158, + [1162] = 151, + [1163] = 646, + [1164] = 1160, + [1165] = 1165, + [1166] = 606, + [1167] = 711, + [1168] = 720, + [1169] = 151, + [1170] = 1159, + [1171] = 729, + [1172] = 151, + [1173] = 722, + [1174] = 151, + [1175] = 600, + [1176] = 632, + [1177] = 666, + [1178] = 665, + [1179] = 664, + [1180] = 663, + [1181] = 662, + [1182] = 661, + [1183] = 660, + [1184] = 656, + [1185] = 654, + [1186] = 729, + [1187] = 630, + [1188] = 1165, + [1189] = 648, + [1190] = 722, + [1191] = 720, + [1192] = 711, + [1193] = 646, + [1194] = 600, + [1195] = 627, + [1196] = 370, + [1197] = 340, + [1198] = 606, + [1199] = 554, + [1200] = 871, + [1201] = 334, + [1202] = 370, + [1203] = 1203, + [1204] = 151, + [1205] = 544, + [1206] = 541, + [1207] = 539, + [1208] = 151, + [1209] = 151, + [1210] = 1210, + [1211] = 151, + [1212] = 600, + [1213] = 1213, + [1214] = 859, + [1215] = 1213, + [1216] = 1216, + [1217] = 1217, + [1218] = 1203, + [1219] = 1216, + [1220] = 894, + [1221] = 884, + [1222] = 863, + [1223] = 885, + [1224] = 1217, + [1225] = 1225, + [1226] = 151, + [1227] = 966, + [1228] = 963, + [1229] = 957, + [1230] = 894, + [1231] = 884, + [1232] = 863, + [1233] = 885, + [1234] = 930, + [1235] = 941, + [1236] = 961, + [1237] = 959, + [1238] = 960, + [1239] = 962, + [1240] = 956, + [1241] = 955, + [1242] = 950, + [1243] = 903, + [1244] = 658, + [1245] = 942, + [1246] = 939, + [1247] = 933, + [1248] = 657, + [1249] = 958, + [1250] = 860, + [1251] = 858, + [1252] = 932, + [1253] = 151, + [1254] = 924, + [1255] = 923, + [1256] = 918, + [1257] = 912, + [1258] = 910, + [1259] = 908, + [1260] = 991, + [1261] = 988, + [1262] = 986, + [1263] = 984, + [1264] = 983, + [1265] = 649, + [1266] = 982, + [1267] = 151, + [1268] = 928, + [1269] = 971, + [1270] = 151, + [1271] = 969, + [1272] = 859, + [1273] = 907, + [1274] = 970, + [1275] = 958, + [1276] = 151, + [1277] = 630, + [1278] = 892, + [1279] = 632, + [1280] = 902, + [1281] = 864, + [1282] = 947, + [1283] = 945, + [1284] = 151, + [1285] = 878, + [1286] = 1225, + [1287] = 859, + [1288] = 676, + [1289] = 940, + [1290] = 880, + [1291] = 879, + [1292] = 936, + [1293] = 935, + [1294] = 926, + [1295] = 626, + [1296] = 934, + [1297] = 631, + [1298] = 874, + [1299] = 634, + [1300] = 704, + [1301] = 872, + [1302] = 931, + [1303] = 875, + [1304] = 924, + [1305] = 927, + [1306] = 714, + [1307] = 903, + [1308] = 859, + [1309] = 926, + [1310] = 861, + [1311] = 727, + [1312] = 959, + [1313] = 925, + [1314] = 151, + [1315] = 915, + [1316] = 713, + [1317] = 857, + [1318] = 914, + [1319] = 913, + [1320] = 886, + [1321] = 906, + [1322] = 905, + [1323] = 909, + [1324] = 890, + [1325] = 913, + [1326] = 956, + [1327] = 955, + [1328] = 962, + [1329] = 960, + [1330] = 939, + [1331] = 942, + [1332] = 988, + [1333] = 660, + [1334] = 941, + [1335] = 930, + [1336] = 661, + [1337] = 861, + [1338] = 860, + [1339] = 858, + [1340] = 902, + [1341] = 662, + [1342] = 957, + [1343] = 963, + [1344] = 966, + [1345] = 600, + [1346] = 970, + [1347] = 663, + [1348] = 971, + [1349] = 969, + [1350] = 370, + [1351] = 932, + [1352] = 950, + [1353] = 664, + [1354] = 665, + [1355] = 961, + [1356] = 666, + [1357] = 539, + [1358] = 933, + [1359] = 340, + [1360] = 923, + [1361] = 600, + [1362] = 600, + [1363] = 541, + [1364] = 918, + [1365] = 912, + [1366] = 910, + [1367] = 856, + [1368] = 908, + [1369] = 656, + [1370] = 947, + [1371] = 627, + [1372] = 945, + [1373] = 334, + [1374] = 648, + [1375] = 892, + [1376] = 370, + [1377] = 940, + [1378] = 936, + [1379] = 935, + [1380] = 934, + [1381] = 931, + [1382] = 875, + [1383] = 982, + [1384] = 983, + [1385] = 927, + [1386] = 151, + [1387] = 871, + [1388] = 984, + [1389] = 902, + [1390] = 554, + [1391] = 544, + [1392] = 991, + [1393] = 654, + [1394] = 925, + [1395] = 928, + [1396] = 909, + [1397] = 878, + [1398] = 880, + [1399] = 879, + [1400] = 915, + [1401] = 857, + [1402] = 914, + [1403] = 907, + [1404] = 905, + [1405] = 986, + [1406] = 864, + [1407] = 886, + [1408] = 902, + [1409] = 906, + [1410] = 554, [1411] = 1411, - [1412] = 866, - [1413] = 867, - [1414] = 310, - [1415] = 378, - [1416] = 327, - [1417] = 338, - [1418] = 318, - [1419] = 390, - [1420] = 335, - [1421] = 1421, - [1422] = 326, - [1423] = 343, - [1424] = 314, - [1425] = 1425, - [1426] = 377, - [1427] = 348, - [1428] = 359, - [1429] = 365, - [1430] = 336, - [1431] = 391, - [1432] = 322, - [1433] = 323, - [1434] = 1434, - [1435] = 325, - [1436] = 1425, - [1437] = 328, - [1438] = 329, - [1439] = 379, - [1440] = 330, - [1441] = 331, - [1442] = 332, - [1443] = 333, - [1444] = 334, - [1445] = 1445, - [1446] = 378, - [1447] = 121, - [1448] = 1402, - [1449] = 339, - [1450] = 314, - [1451] = 1411, - [1452] = 1445, - [1453] = 343, - [1454] = 522, - [1455] = 337, - [1456] = 554, - [1457] = 321, - [1458] = 1421, - [1459] = 1434, - [1460] = 324, - [1461] = 318, - [1462] = 341, - [1463] = 521, - [1464] = 316, - [1465] = 338, - [1466] = 326, - [1467] = 314, - [1468] = 337, - [1469] = 338, - [1470] = 334, - [1471] = 548, - [1472] = 311, - [1473] = 310, - [1474] = 390, - [1475] = 341, - [1476] = 317, - [1477] = 359, - [1478] = 378, - [1479] = 318, - [1480] = 398, - [1481] = 547, - [1482] = 546, - [1483] = 378, - [1484] = 545, - [1485] = 365, - [1486] = 527, - [1487] = 333, - [1488] = 332, - [1489] = 331, - [1490] = 330, - [1491] = 329, - [1492] = 328, - [1493] = 325, - [1494] = 337, - [1495] = 320, - [1496] = 322, - [1497] = 329, - [1498] = 316, - [1499] = 323, - [1500] = 321, - [1501] = 336, - [1502] = 317, - [1503] = 324, - [1504] = 524, - [1505] = 323, - [1506] = 322, - [1507] = 522, - [1508] = 338, - [1509] = 521, - [1510] = 324, - [1511] = 353, - [1512] = 391, - [1513] = 318, - [1514] = 325, - [1515] = 328, - [1516] = 524, - [1517] = 343, - [1518] = 329, - [1519] = 330, - [1520] = 331, - [1521] = 314, - [1522] = 390, - [1523] = 332, - [1524] = 333, - [1525] = 317, - [1526] = 900, - [1527] = 528, - [1528] = 334, - [1529] = 335, - [1530] = 378, - [1531] = 343, - [1532] = 348, - [1533] = 391, - [1534] = 343, - [1535] = 377, - [1536] = 327, - [1537] = 900, - [1538] = 391, - [1539] = 339, - [1540] = 341, - [1541] = 365, - [1542] = 867, - [1543] = 554, - [1544] = 338, - [1545] = 359, - [1546] = 866, - [1547] = 865, - [1548] = 390, - [1549] = 864, - [1550] = 379, - [1551] = 327, - [1552] = 333, - [1553] = 353, - [1554] = 319, - [1555] = 324, - [1556] = 321, - [1557] = 365, - [1558] = 529, - [1559] = 348, - [1560] = 462, - [1561] = 332, - [1562] = 335, - [1563] = 339, - [1564] = 327, - [1565] = 378, - [1566] = 457, - [1567] = 311, - [1568] = 316, - [1569] = 327, - [1570] = 359, - [1571] = 323, - [1572] = 331, - [1573] = 330, - [1574] = 348, - [1575] = 327, - [1576] = 322, - [1577] = 554, - [1578] = 378, - [1579] = 549, - [1580] = 379, - [1581] = 326, - [1582] = 378, - [1583] = 377, - [1584] = 336, - [1585] = 314, - [1586] = 326, - [1587] = 320, - [1588] = 318, - [1589] = 321, - [1590] = 335, - [1591] = 415, - [1592] = 554, - [1593] = 325, - [1594] = 327, - [1595] = 310, - [1596] = 378, - [1597] = 339, - [1598] = 378, - [1599] = 319, - [1600] = 328, - [1601] = 378, - [1602] = 341, - [1603] = 336, - [1604] = 322, - [1605] = 554, - [1606] = 318, - [1607] = 1607, - [1608] = 326, - [1609] = 343, - [1610] = 320, - [1611] = 326, - [1612] = 391, - [1613] = 314, - [1614] = 1614, - [1615] = 1615, - [1616] = 319, - [1617] = 390, - [1618] = 327, - [1619] = 348, - [1620] = 316, - [1621] = 337, - [1622] = 359, - [1623] = 321, - [1624] = 918, - [1625] = 1625, - [1626] = 919, - [1627] = 929, - [1628] = 930, - [1629] = 931, - [1630] = 524, + [1412] = 662, + [1413] = 1413, + [1414] = 1414, + [1415] = 676, + [1416] = 657, + [1417] = 151, + [1418] = 1418, + [1419] = 370, + [1420] = 657, + [1421] = 340, + [1422] = 541, + [1423] = 334, + [1424] = 151, + [1425] = 544, + [1426] = 1411, + [1427] = 626, + [1428] = 1428, + [1429] = 704, + [1430] = 370, + [1431] = 871, + [1432] = 711, + [1433] = 714, + [1434] = 704, + [1435] = 714, + [1436] = 1436, + [1437] = 859, + [1438] = 631, + [1439] = 1414, + [1440] = 649, + [1441] = 727, + [1442] = 720, + [1443] = 722, + [1444] = 885, + [1445] = 648, + [1446] = 539, + [1447] = 1428, + [1448] = 874, + [1449] = 632, + [1450] = 713, + [1451] = 606, + [1452] = 658, + [1453] = 872, + [1454] = 626, + [1455] = 863, + [1456] = 1436, + [1457] = 658, + [1458] = 1418, + [1459] = 676, + [1460] = 729, + [1461] = 654, + [1462] = 630, + [1463] = 859, + [1464] = 627, + [1465] = 656, + [1466] = 631, + [1467] = 884, + [1468] = 634, + [1469] = 649, + [1470] = 894, + [1471] = 727, + [1472] = 600, + [1473] = 600, + [1474] = 1413, + [1475] = 646, + [1476] = 663, + [1477] = 664, + [1478] = 666, + [1479] = 713, + [1480] = 600, + [1481] = 665, + [1482] = 660, + [1483] = 661, + [1484] = 600, + [1485] = 631, + [1486] = 340, + [1487] = 600, + [1488] = 634, + [1489] = 334, + [1490] = 871, + [1491] = 958, + [1492] = 600, + [1493] = 627, + [1494] = 727, + [1495] = 658, + [1496] = 600, + [1497] = 872, + [1498] = 713, + [1499] = 874, + [1500] = 370, + [1501] = 554, + [1502] = 646, + [1503] = 666, + [1504] = 856, + [1505] = 657, + [1506] = 600, + [1507] = 666, + [1508] = 665, + [1509] = 600, + [1510] = 664, + [1511] = 663, + [1512] = 662, + [1513] = 661, + [1514] = 660, + [1515] = 890, + [1516] = 665, + [1517] = 626, + [1518] = 541, + [1519] = 664, + [1520] = 676, + [1521] = 663, + [1522] = 959, + [1523] = 662, + [1524] = 600, + [1525] = 630, + [1526] = 661, + [1527] = 875, + [1528] = 894, + [1529] = 884, + [1530] = 926, + [1531] = 627, + [1532] = 656, + [1533] = 654, + [1534] = 727, + [1535] = 634, + [1536] = 863, + [1537] = 885, + [1538] = 649, + [1539] = 370, + [1540] = 648, + [1541] = 632, + [1542] = 903, + [1543] = 660, + [1544] = 722, + [1545] = 856, + [1546] = 729, + [1547] = 654, + [1548] = 656, + [1549] = 600, + [1550] = 648, + [1551] = 720, + [1552] = 714, + [1553] = 886, + [1554] = 334, + [1555] = 340, + [1556] = 713, + [1557] = 656, + [1558] = 924, + [1559] = 859, + [1560] = 654, + [1561] = 626, + [1562] = 370, + [1563] = 704, + [1564] = 370, + [1565] = 871, + [1566] = 711, + [1567] = 606, + [1568] = 859, + [1569] = 704, + [1570] = 340, + [1571] = 711, + [1572] = 729, + [1573] = 544, + [1574] = 541, + [1575] = 649, + [1576] = 539, + [1577] = 861, + [1578] = 606, + [1579] = 544, + [1580] = 539, + [1581] = 541, + [1582] = 544, + [1583] = 630, + [1584] = 554, + [1585] = 727, + [1586] = 704, + [1587] = 714, + [1588] = 648, + [1589] = 902, + [1590] = 864, + [1591] = 657, + [1592] = 370, + [1593] = 902, + [1594] = 714, + [1595] = 658, + [1596] = 857, + [1597] = 657, + [1598] = 860, + [1599] = 334, + [1600] = 858, + [1601] = 627, + [1602] = 631, + [1603] = 632, + [1604] = 676, + [1605] = 600, + [1606] = 646, + [1607] = 554, + [1608] = 892, + [1609] = 666, + [1610] = 665, + [1611] = 664, + [1612] = 663, + [1613] = 720, + [1614] = 662, + [1615] = 859, + [1616] = 539, + [1617] = 661, + [1618] = 660, + [1619] = 631, + [1620] = 370, + [1621] = 878, + [1622] = 880, + [1623] = 879, + [1624] = 722, + [1625] = 626, + [1626] = 713, + [1627] = 885, + [1628] = 1628, + [1629] = 658, + [1630] = 666, [1631] = 1631, - [1632] = 932, - [1633] = 939, - [1634] = 941, - [1635] = 942, - [1636] = 943, - [1637] = 944, - [1638] = 945, - [1639] = 946, - [1640] = 398, - [1641] = 317, - [1642] = 949, - [1643] = 950, - [1644] = 951, - [1645] = 952, - [1646] = 953, - [1647] = 365, - [1648] = 959, - [1649] = 415, - [1650] = 310, - [1651] = 311, - [1652] = 962, - [1653] = 963, - [1654] = 330, - [1655] = 323, - [1656] = 549, - [1657] = 965, - [1658] = 324, - [1659] = 900, - [1660] = 966, - [1661] = 967, - [1662] = 968, - [1663] = 319, - [1664] = 548, - [1665] = 547, - [1666] = 546, - [1667] = 545, - [1668] = 1668, - [1669] = 325, - [1670] = 971, - [1671] = 970, - [1672] = 328, - [1673] = 329, - [1674] = 524, - [1675] = 457, + [1632] = 646, + [1633] = 600, + [1634] = 1634, + [1635] = 861, + [1636] = 630, + [1637] = 634, + [1638] = 649, + [1639] = 1639, + [1640] = 631, + [1641] = 627, + [1642] = 656, + [1643] = 958, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 657, + [1648] = 1648, + [1649] = 859, + [1650] = 856, + [1651] = 857, + [1652] = 859, + [1653] = 676, + [1654] = 879, + [1655] = 880, + [1656] = 878, + [1657] = 903, + [1658] = 729, + [1659] = 1659, + [1660] = 654, + [1661] = 606, + [1662] = 856, + [1663] = 874, + [1664] = 872, + [1665] = 864, + [1666] = 370, + [1667] = 1667, + [1668] = 902, + [1669] = 859, + [1670] = 554, + [1671] = 340, + [1672] = 926, + [1673] = 660, + [1674] = 661, + [1675] = 334, [1676] = 1676, - [1677] = 1677, - [1678] = 462, - [1679] = 341, - [1680] = 522, - [1681] = 964, - [1682] = 1682, - [1683] = 961, - [1684] = 331, - [1685] = 960, - [1686] = 958, - [1687] = 955, - [1688] = 529, - [1689] = 554, - [1690] = 332, - [1691] = 333, - [1692] = 528, - [1693] = 948, - [1694] = 338, - [1695] = 334, - [1696] = 316, - [1697] = 527, - [1698] = 521, - [1699] = 378, - [1700] = 947, - [1701] = 524, + [1677] = 874, + [1678] = 1678, + [1679] = 662, + [1680] = 1680, + [1681] = 982, + [1682] = 871, + [1683] = 663, + [1684] = 664, + [1685] = 370, + [1686] = 983, + [1687] = 984, + [1688] = 986, + [1689] = 875, + [1690] = 648, + [1691] = 924, + [1692] = 988, + [1693] = 864, + [1694] = 1646, + [1695] = 886, + [1696] = 722, + [1697] = 1697, + [1698] = 991, + [1699] = 907, + [1700] = 1644, + [1701] = 1639, [1702] = 1702, - [1703] = 522, - [1704] = 521, - [1705] = 339, - [1706] = 1706, - [1707] = 527, - [1708] = 867, - [1709] = 866, - [1710] = 462, - [1711] = 457, - [1712] = 865, + [1703] = 720, + [1704] = 859, + [1705] = 908, + [1706] = 1631, + [1707] = 1645, + [1708] = 1648, + [1709] = 885, + [1710] = 910, + [1711] = 1667, + [1712] = 665, [1713] = 1713, - [1714] = 1714, - [1715] = 864, - [1716] = 1716, - [1717] = 895, - [1718] = 522, - [1719] = 335, - [1720] = 378, - [1721] = 1721, - [1722] = 521, + [1714] = 1713, + [1715] = 1676, + [1716] = 1678, + [1717] = 1680, + [1718] = 959, + [1719] = 926, + [1720] = 912, + [1721] = 875, + [1722] = 1702, [1723] = 1723, - [1724] = 925, - [1725] = 415, - [1726] = 554, - [1727] = 1727, - [1728] = 1714, - [1729] = 900, - [1730] = 1730, - [1731] = 1731, - [1732] = 1732, - [1733] = 1733, - [1734] = 353, - [1735] = 528, - [1736] = 1736, - [1737] = 398, - [1738] = 549, - [1739] = 864, - [1740] = 924, - [1741] = 923, - [1742] = 920, - [1743] = 1743, - [1744] = 1706, + [1724] = 918, + [1725] = 859, + [1726] = 924, + [1727] = 892, + [1728] = 859, + [1729] = 923, + [1730] = 886, + [1731] = 1723, + [1732] = 632, + [1733] = 928, + [1734] = 902, + [1735] = 909, + [1736] = 1628, + [1737] = 861, + [1738] = 1738, + [1739] = 1738, + [1740] = 890, + [1741] = 905, + [1742] = 1742, + [1743] = 860, + [1744] = 858, [1745] = 1745, - [1746] = 1607, - [1747] = 554, - [1748] = 1748, - [1749] = 865, - [1750] = 327, - [1751] = 1713, - [1752] = 866, - [1753] = 917, - [1754] = 1716, - [1755] = 867, - [1756] = 1756, - [1757] = 1721, - [1758] = 1758, - [1759] = 1727, - [1760] = 1732, - [1761] = 916, - [1762] = 554, - [1763] = 1743, - [1764] = 914, - [1765] = 1748, - [1766] = 377, - [1767] = 1756, - [1768] = 554, - [1769] = 379, - [1770] = 554, - [1771] = 1615, - [1772] = 894, - [1773] = 1731, - [1774] = 1730, - [1775] = 1723, - [1776] = 867, - [1777] = 866, - [1778] = 865, - [1779] = 864, - [1780] = 378, - [1781] = 1682, - [1782] = 545, - [1783] = 546, - [1784] = 547, - [1785] = 903, - [1786] = 1677, - [1787] = 548, - [1788] = 902, - [1789] = 901, - [1790] = 1631, - [1791] = 529, - [1792] = 900, - [1793] = 899, - [1794] = 898, - [1795] = 1668, - [1796] = 1614, - [1797] = 1702, - [1798] = 897, - [1799] = 896, - [1800] = 1733, - [1801] = 1625, - [1802] = 554, - [1803] = 1736, - [1804] = 1676, - [1805] = 524, - [1806] = 547, - [1807] = 914, - [1808] = 916, - [1809] = 917, - [1810] = 900, - [1811] = 946, - [1812] = 914, - [1813] = 951, - [1814] = 398, - [1815] = 920, - [1816] = 894, - [1817] = 903, - [1818] = 925, - [1819] = 967, - [1820] = 898, - [1821] = 970, - [1822] = 955, - [1823] = 968, - [1824] = 899, - [1825] = 415, - [1826] = 902, - [1827] = 966, - [1828] = 901, - [1829] = 900, - [1830] = 899, - [1831] = 898, - [1832] = 897, - [1833] = 894, - [1834] = 963, - [1835] = 896, - [1836] = 964, - [1837] = 965, - [1838] = 923, - [1839] = 918, - [1840] = 919, - [1841] = 929, - [1842] = 930, - [1843] = 931, - [1844] = 932, - [1845] = 924, - [1846] = 939, - [1847] = 948, - [1848] = 900, - [1849] = 897, - [1850] = 925, - [1851] = 895, - [1852] = 521, - [1853] = 554, - [1854] = 554, - [1855] = 941, - [1856] = 943, - [1857] = 941, - [1858] = 895, - [1859] = 522, - [1860] = 953, - [1861] = 971, - [1862] = 939, - [1863] = 942, - [1864] = 943, - [1865] = 900, - [1866] = 950, - [1867] = 944, - [1868] = 527, - [1869] = 549, - [1870] = 947, - [1871] = 528, - [1872] = 900, - [1873] = 916, - [1874] = 945, - [1875] = 896, - [1876] = 958, - [1877] = 932, - [1878] = 931, - [1879] = 962, - [1880] = 554, - [1881] = 946, - [1882] = 949, - [1883] = 930, - [1884] = 944, - [1885] = 903, - [1886] = 945, - [1887] = 950, - [1888] = 457, - [1889] = 901, - [1890] = 929, - [1891] = 924, - [1892] = 462, - [1893] = 959, - [1894] = 919, - [1895] = 545, - [1896] = 900, - [1897] = 947, - [1898] = 918, - [1899] = 951, - [1900] = 948, - [1901] = 955, - [1902] = 958, - [1903] = 864, - [1904] = 960, - [1905] = 952, - [1906] = 953, - [1907] = 942, - [1908] = 961, - [1909] = 964, - [1910] = 529, - [1911] = 949, - [1912] = 970, - [1913] = 971, - [1914] = 902, - [1915] = 923, - [1916] = 1745, - [1917] = 968, - [1918] = 959, - [1919] = 920, - [1920] = 546, - [1921] = 865, - [1922] = 866, - [1923] = 967, - [1924] = 900, - [1925] = 966, - [1926] = 867, - [1927] = 548, - [1928] = 961, - [1929] = 962, - [1930] = 917, - [1931] = 965, - [1932] = 900, - [1933] = 963, - [1934] = 952, - [1935] = 960, - [1936] = 899, - [1937] = 920, - [1938] = 317, - [1939] = 903, - [1940] = 391, - [1941] = 902, - [1942] = 894, - [1943] = 953, - [1944] = 952, - [1945] = 948, - [1946] = 378, - [1947] = 951, - [1948] = 929, - [1949] = 950, - [1950] = 914, - [1951] = 341, - [1952] = 327, - [1953] = 918, - [1954] = 955, - [1955] = 959, - [1956] = 916, - [1957] = 917, - [1958] = 949, - [1959] = 359, - [1960] = 390, - [1961] = 327, - [1962] = 335, - [1963] = 365, - [1964] = 923, - [1965] = 962, - [1966] = 901, - [1967] = 1967, - [1968] = 963, - [1969] = 924, - [1970] = 390, - [1971] = 1971, - [1972] = 391, - [1973] = 925, - [1974] = 919, - [1975] = 900, - [1976] = 900, - [1977] = 965, - [1978] = 966, - [1979] = 900, - [1980] = 895, - [1981] = 958, - [1982] = 378, - [1983] = 967, - [1984] = 960, - [1985] = 968, - [1986] = 1986, - [1987] = 898, - [1988] = 897, - [1989] = 945, - [1990] = 944, - [1991] = 943, - [1992] = 896, - [1993] = 348, - [1994] = 961, - [1995] = 348, - [1996] = 359, - [1997] = 946, - [1998] = 947, - [1999] = 971, - [2000] = 322, - [2001] = 323, - [2002] = 365, - [2003] = 970, - [2004] = 942, - [2005] = 339, - [2006] = 325, - [2007] = 328, - [2008] = 964, - [2009] = 941, - [2010] = 329, - [2011] = 330, - [2012] = 939, - [2013] = 932, - [2014] = 331, - [2015] = 332, - [2016] = 333, - [2017] = 931, - [2018] = 930, - [2019] = 524, - [2020] = 521, - [2021] = 554, - [2022] = 864, - [2023] = 865, - [2024] = 866, - [2025] = 867, - [2026] = 900, - [2027] = 379, + [1746] = 906, + [1747] = 676, + [1748] = 902, + [1749] = 1749, + [1750] = 1750, + [1751] = 1751, + [1752] = 1752, + [1753] = 932, + [1754] = 1754, + [1755] = 903, + [1756] = 933, + [1757] = 939, + [1758] = 913, + [1759] = 942, + [1760] = 914, + [1761] = 857, + [1762] = 626, + [1763] = 1763, + [1764] = 1764, + [1765] = 871, + [1766] = 959, + [1767] = 950, + [1768] = 658, + [1769] = 859, + [1770] = 1749, + [1771] = 859, + [1772] = 1750, + [1773] = 915, + [1774] = 890, + [1775] = 879, + [1776] = 880, + [1777] = 878, + [1778] = 925, + [1779] = 711, + [1780] = 539, + [1781] = 541, + [1782] = 927, + [1783] = 1754, + [1784] = 931, + [1785] = 1764, + [1786] = 934, + [1787] = 894, + [1788] = 884, + [1789] = 1745, + [1790] = 1742, + [1791] = 935, + [1792] = 936, + [1793] = 940, + [1794] = 955, + [1795] = 892, + [1796] = 945, + [1797] = 947, + [1798] = 956, + [1799] = 958, + [1800] = 600, + [1801] = 544, + [1802] = 872, + [1803] = 704, + [1804] = 863, + [1805] = 714, + [1806] = 863, + [1807] = 884, + [1808] = 894, + [1809] = 600, + [1810] = 1751, + [1811] = 885, + [1812] = 1752, + [1813] = 649, + [1814] = 961, + [1815] = 969, + [1816] = 1634, + [1817] = 872, + [1818] = 713, + [1819] = 971, + [1820] = 970, + [1821] = 894, + [1822] = 874, + [1823] = 856, + [1824] = 966, + [1825] = 963, + [1826] = 957, + [1827] = 727, + [1828] = 858, + [1829] = 860, + [1830] = 962, + [1831] = 884, + [1832] = 1697, + [1833] = 930, + [1834] = 941, + [1835] = 863, + [1836] = 960, + [1837] = 963, + [1838] = 906, + [1839] = 957, + [1840] = 905, + [1841] = 955, + [1842] = 947, + [1843] = 913, + [1844] = 956, + [1845] = 858, + [1846] = 860, + [1847] = 961, + [1848] = 969, + [1849] = 962, + [1850] = 909, + [1851] = 971, + [1852] = 950, + [1853] = 928, + [1854] = 960, + [1855] = 925, + [1856] = 970, + [1857] = 923, + [1858] = 966, + [1859] = 963, + [1860] = 902, + [1861] = 941, + [1862] = 942, + [1863] = 930, + [1864] = 945, + [1865] = 939, + [1866] = 933, + [1867] = 864, + [1868] = 902, + [1869] = 894, + [1870] = 930, + [1871] = 905, + [1872] = 941, + [1873] = 884, + [1874] = 902, + [1875] = 863, + [1876] = 892, + [1877] = 885, + [1878] = 940, + [1879] = 936, + [1880] = 935, + [1881] = 861, + [1882] = 932, + [1883] = 934, + [1884] = 931, + [1885] = 957, + [1886] = 927, + [1887] = 902, + [1888] = 924, + [1889] = 927, + [1890] = 960, + [1891] = 902, + [1892] = 962, + [1893] = 902, + [1894] = 903, + [1895] = 966, + [1896] = 956, + [1897] = 955, + [1898] = 931, + [1899] = 923, + [1900] = 950, + [1901] = 912, + [1902] = 906, + [1903] = 918, + [1904] = 932, + [1905] = 859, + [1906] = 970, + [1907] = 886, + [1908] = 971, + [1909] = 857, + [1910] = 910, + [1911] = 878, + [1912] = 912, + [1913] = 880, + [1914] = 940, + [1915] = 879, + [1916] = 909, + [1917] = 969, + [1918] = 936, + [1919] = 908, + [1920] = 1659, + [1921] = 859, + [1922] = 907, + [1923] = 859, + [1924] = 928, + [1925] = 991, + [1926] = 925, + [1927] = 988, + [1928] = 902, + [1929] = 902, + [1930] = 926, + [1931] = 910, + [1932] = 875, + [1933] = 986, + [1934] = 915, + [1935] = 942, + [1936] = 915, + [1937] = 984, + [1938] = 947, + [1939] = 983, + [1940] = 959, + [1941] = 961, + [1942] = 914, + [1943] = 982, + [1944] = 935, + [1945] = 983, + [1946] = 934, + [1947] = 982, + [1948] = 939, + [1949] = 984, + [1950] = 933, + [1951] = 986, + [1952] = 991, + [1953] = 914, + [1954] = 988, + [1955] = 890, + [1956] = 945, + [1957] = 918, + [1958] = 907, + [1959] = 856, + [1960] = 874, + [1961] = 913, + [1962] = 908, + [1963] = 872, + [1964] = 958, + [1965] = 982, + [1966] = 969, + [1967] = 988, + [1968] = 660, + [1969] = 925, + [1970] = 661, + [1971] = 991, + [1972] = 662, + [1973] = 907, + [1974] = 663, + [1975] = 908, + [1976] = 910, + [1977] = 915, + [1978] = 664, + [1979] = 912, + [1980] = 600, + [1981] = 914, + [1982] = 918, + [1983] = 923, + [1984] = 931, + [1985] = 935, + [1986] = 665, + [1987] = 913, + [1988] = 936, + [1989] = 940, + [1990] = 666, + [1991] = 902, + [1992] = 945, + [1993] = 947, + [1994] = 554, + [1995] = 340, + [1996] = 986, + [1997] = 905, + [1998] = 932, + [1999] = 627, + [2000] = 544, + [2001] = 656, + [2002] = 909, + [2003] = 2003, + [2004] = 370, + [2005] = 928, + [2006] = 334, + [2007] = 654, + [2008] = 906, + [2009] = 961, + [2010] = 927, + [2011] = 902, + [2012] = 956, + [2013] = 544, + [2014] = 541, + [2015] = 539, + [2016] = 933, + [2017] = 971, + [2018] = 939, + [2019] = 942, + [2020] = 983, + [2021] = 955, + [2022] = 970, + [2023] = 984, + [2024] = 334, + [2025] = 966, + [2026] = 963, + [2027] = 600, [2028] = 2028, - [2029] = 2029, - [2030] = 2030, - [2031] = 2031, - [2032] = 2029, - [2033] = 2033, - [2034] = 2030, - [2035] = 2035, - [2036] = 2029, - [2037] = 2031, - [2038] = 2030, - [2039] = 2033, - [2040] = 2033, - [2041] = 2030, - [2042] = 2042, - [2043] = 2029, - [2044] = 2044, - [2045] = 2031, - [2046] = 2033, - [2047] = 2030, - [2048] = 2029, - [2049] = 2044, - [2050] = 2044, - [2051] = 2033, - [2052] = 2030, - [2053] = 2033, - [2054] = 2029, - [2055] = 2031, - [2056] = 2029, - [2057] = 2044, - [2058] = 2033, - [2059] = 2030, - [2060] = 2044, - [2061] = 2031, - [2062] = 2044, - [2063] = 2029, - [2064] = 2030, - [2065] = 2033, - [2066] = 2031, - [2067] = 2033, - [2068] = 2030, - [2069] = 2029, - [2070] = 2033, - [2071] = 2031, - [2072] = 2033, - [2073] = 2044, - [2074] = 2044, - [2075] = 2033, - [2076] = 2033, - [2077] = 2031, - [2078] = 2044, - [2079] = 2031, - [2080] = 2033, - [2081] = 2033, - [2082] = 2082, - [2083] = 2083, - [2084] = 2084, - [2085] = 2085, - [2086] = 2082, - [2087] = 2082, - [2088] = 866, - [2089] = 2089, - [2090] = 2089, - [2091] = 867, - [2092] = 2084, - [2093] = 2083, - [2094] = 2094, - [2095] = 2089, - [2096] = 2096, - [2097] = 2097, - [2098] = 2098, - [2099] = 2082, - [2100] = 2084, - [2101] = 2094, - [2102] = 2097, - [2103] = 2103, - [2104] = 2103, - [2105] = 2083, - [2106] = 2094, - [2107] = 2082, + [2029] = 957, + [2030] = 631, + [2031] = 902, + [2032] = 950, + [2033] = 340, + [2034] = 541, + [2035] = 648, + [2036] = 2036, + [2037] = 930, + [2038] = 934, + [2039] = 941, + [2040] = 539, + [2041] = 960, + [2042] = 962, + [2043] = 370, + [2044] = 859, + [2045] = 856, + [2046] = 894, + [2047] = 884, + [2048] = 863, + [2049] = 885, + [2050] = 2050, + [2051] = 872, + [2052] = 902, + [2053] = 630, + [2054] = 2054, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2057, + [2059] = 2055, + [2060] = 2055, + [2061] = 2061, + [2062] = 2062, + [2063] = 2055, + [2064] = 2064, + [2065] = 2064, + [2066] = 2064, + [2067] = 2064, + [2068] = 2055, + [2069] = 2056, + [2070] = 2055, + [2071] = 2062, + [2072] = 2057, + [2073] = 2056, + [2074] = 2056, + [2075] = 2057, + [2076] = 2057, + [2077] = 2057, + [2078] = 2057, + [2079] = 2056, + [2080] = 2057, + [2081] = 2056, + [2082] = 2057, + [2083] = 2056, + [2084] = 2057, + [2085] = 2062, + [2086] = 2057, + [2087] = 2056, + [2088] = 2057, + [2089] = 2064, + [2090] = 2062, + [2091] = 2062, + [2092] = 2064, + [2093] = 2062, + [2094] = 2062, + [2095] = 2057, + [2096] = 2057, + [2097] = 2055, + [2098] = 2062, + [2099] = 2062, + [2100] = 2055, + [2101] = 2064, + [2102] = 2064, + [2103] = 2057, + [2104] = 2055, + [2105] = 2056, + [2106] = 2106, + [2107] = 2064, [2108] = 2108, - [2109] = 2089, - [2110] = 2097, - [2111] = 2094, - [2112] = 2085, - [2113] = 2084, + [2109] = 2108, + [2110] = 2110, + [2111] = 2111, + [2112] = 2111, + [2113] = 2113, [2114] = 2114, - [2115] = 2083, - [2116] = 2103, - [2117] = 2103, - [2118] = 2083, - [2119] = 2089, - [2120] = 2098, - [2121] = 2082, - [2122] = 2096, - [2123] = 2097, - [2124] = 2084, - [2125] = 2103, - [2126] = 2083, - [2127] = 2127, - [2128] = 2082, - [2129] = 2094, - [2130] = 2089, - [2131] = 2131, - [2132] = 2094, - [2133] = 2082, - [2134] = 2089, - [2135] = 2083, - [2136] = 2103, - [2137] = 2089, - [2138] = 2084, - [2139] = 2089, - [2140] = 2097, - [2141] = 2097, - [2142] = 2082, - [2143] = 2083, - [2144] = 2084, - [2145] = 2145, - [2146] = 2084, - [2147] = 2094, - [2148] = 2094, - [2149] = 864, - [2150] = 2083, - [2151] = 2103, - [2152] = 2094, - [2153] = 2094, - [2154] = 2097, - [2155] = 2082, - [2156] = 2083, - [2157] = 2103, - [2158] = 2084, - [2159] = 865, - [2160] = 2103, - [2161] = 2131, - [2162] = 2097, - [2163] = 2094, - [2164] = 2084, - [2165] = 2084, - [2166] = 2084, - [2167] = 2084, - [2168] = 2082, - [2169] = 2084, - [2170] = 2082, - [2171] = 2171, - [2172] = 2089, - [2173] = 2097, - [2174] = 2084, - [2175] = 2089, - [2176] = 2083, - [2177] = 2094, - [2178] = 2103, - [2179] = 2082, - [2180] = 2180, - [2181] = 2089, - [2182] = 2089, - [2183] = 2082, - [2184] = 2094, - [2185] = 2094, - [2186] = 2084, - [2187] = 2089, - [2188] = 866, - [2189] = 864, - [2190] = 865, - [2191] = 867, - [2192] = 864, - [2193] = 865, - [2194] = 866, - [2195] = 867, - [2196] = 867, - [2197] = 864, - [2198] = 867, - [2199] = 864, - [2200] = 866, - [2201] = 864, - [2202] = 865, - [2203] = 866, - [2204] = 865, - [2205] = 867, - [2206] = 866, - [2207] = 865, - [2208] = 864, - [2209] = 866, - [2210] = 865, - [2211] = 867, - [2212] = 865, - [2213] = 866, - [2214] = 867, - [2215] = 864, - [2216] = 2216, - [2217] = 2216, - [2218] = 359, - [2219] = 2216, - [2220] = 390, - [2221] = 2216, - [2222] = 348, - [2223] = 379, - [2224] = 2216, - [2225] = 2225, - [2226] = 2216, - [2227] = 2216, - [2228] = 365, - [2229] = 2229, - [2230] = 2216, - [2231] = 391, - [2232] = 2216, - [2233] = 2233, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2235, - [2238] = 2235, - [2239] = 2235, - [2240] = 2235, - [2241] = 2235, - [2242] = 2235, - [2243] = 2236, - [2244] = 2235, - [2245] = 2235, - [2246] = 2246, + [2115] = 2115, + [2116] = 2110, + [2117] = 2117, + [2118] = 2108, + [2119] = 2119, + [2120] = 2120, + [2121] = 2111, + [2122] = 2113, + [2123] = 2123, + [2124] = 2124, + [2125] = 2108, + [2126] = 2111, + [2127] = 2110, + [2128] = 2128, + [2129] = 2111, + [2130] = 884, + [2131] = 863, + [2132] = 2113, + [2133] = 2110, + [2134] = 2113, + [2135] = 2120, + [2136] = 2124, + [2137] = 885, + [2138] = 2110, + [2139] = 2110, + [2140] = 2140, + [2141] = 2124, + [2142] = 2108, + [2143] = 2111, + [2144] = 2140, + [2145] = 2108, + [2146] = 2120, + [2147] = 2108, + [2148] = 2108, + [2149] = 2113, + [2150] = 2110, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2111, + [2155] = 2140, + [2156] = 2110, + [2157] = 2110, + [2158] = 2110, + [2159] = 2110, + [2160] = 2124, + [2161] = 2120, + [2162] = 2140, + [2163] = 2140, + [2164] = 2113, + [2165] = 2111, + [2166] = 2124, + [2167] = 2108, + [2168] = 2115, + [2169] = 2128, + [2170] = 2108, + [2171] = 2111, + [2172] = 2108, + [2173] = 2140, + [2174] = 2113, + [2175] = 2140, + [2176] = 2111, + [2177] = 2113, + [2178] = 2120, + [2179] = 2120, + [2180] = 2111, + [2181] = 2111, + [2182] = 2140, + [2183] = 2113, + [2184] = 2110, + [2185] = 2113, + [2186] = 2120, + [2187] = 2108, + [2188] = 2110, + [2189] = 2120, + [2190] = 2108, + [2191] = 894, + [2192] = 2140, + [2193] = 2151, + [2194] = 2108, + [2195] = 2120, + [2196] = 2108, + [2197] = 2111, + [2198] = 2111, + [2199] = 2124, + [2200] = 2113, + [2201] = 2120, + [2202] = 2140, + [2203] = 2108, + [2204] = 2140, + [2205] = 2119, + [2206] = 2124, + [2207] = 2110, + [2208] = 2208, + [2209] = 2124, + [2210] = 2140, + [2211] = 2140, + [2212] = 2124, + [2213] = 2140, + [2214] = 863, + [2215] = 885, + [2216] = 884, + [2217] = 894, + [2218] = 885, + [2219] = 863, + [2220] = 884, + [2221] = 894, + [2222] = 885, + [2223] = 885, + [2224] = 863, + [2225] = 863, + [2226] = 884, + [2227] = 863, + [2228] = 894, + [2229] = 894, + [2230] = 885, + [2231] = 884, + [2232] = 894, + [2233] = 884, + [2234] = 885, + [2235] = 863, + [2236] = 884, + [2237] = 894, + [2238] = 863, + [2239] = 885, + [2240] = 884, + [2241] = 894, + [2242] = 541, + [2243] = 2243, + [2244] = 2244, + [2245] = 2244, + [2246] = 2244, [2247] = 2247, - [2248] = 2248, - [2249] = 2249, - [2250] = 365, - [2251] = 2251, - [2252] = 348, - [2253] = 359, - [2254] = 390, - [2255] = 391, - [2256] = 2256, - [2257] = 359, - [2258] = 390, - [2259] = 2256, + [2248] = 630, + [2249] = 544, + [2250] = 2244, + [2251] = 2244, + [2252] = 2244, + [2253] = 539, + [2254] = 2244, + [2255] = 2244, + [2256] = 334, + [2257] = 340, + [2258] = 2244, + [2259] = 2259, [2260] = 2260, - [2261] = 2256, - [2262] = 2256, - [2263] = 2260, - [2264] = 2260, - [2265] = 379, - [2266] = 2260, - [2267] = 2260, - [2268] = 365, - [2269] = 2256, - [2270] = 2260, - [2271] = 2260, - [2272] = 2256, - [2273] = 2256, - [2274] = 391, - [2275] = 2256, - [2276] = 2276, - [2277] = 2260, - [2278] = 2256, - [2279] = 2276, - [2280] = 2260, - [2281] = 348, + [2261] = 2260, + [2262] = 2259, + [2263] = 2259, + [2264] = 2259, + [2265] = 2259, + [2266] = 2266, + [2267] = 2267, + [2268] = 2259, + [2269] = 2269, + [2270] = 2259, + [2271] = 2271, + [2272] = 2259, + [2273] = 2259, + [2274] = 2274, + [2275] = 2275, + [2276] = 541, + [2277] = 539, + [2278] = 544, + [2279] = 2279, + [2280] = 340, + [2281] = 334, [2282] = 2282, [2283] = 2283, - [2284] = 391, + [2284] = 2283, [2285] = 2282, - [2286] = 348, - [2287] = 2282, - [2288] = 2282, - [2289] = 2282, - [2290] = 1986, - [2291] = 2291, - [2292] = 2292, - [2293] = 2283, - [2294] = 2294, - [2295] = 2295, - [2296] = 390, - [2297] = 359, - [2298] = 2292, - [2299] = 2282, - [2300] = 2283, + [2286] = 2282, + [2287] = 541, + [2288] = 2288, + [2289] = 2283, + [2290] = 2283, + [2291] = 2282, + [2292] = 2288, + [2293] = 539, + [2294] = 2283, + [2295] = 2282, + [2296] = 340, + [2297] = 2283, + [2298] = 2282, + [2299] = 2283, + [2300] = 2282, [2301] = 2282, - [2302] = 2295, - [2303] = 365, - [2304] = 348, - [2305] = 359, - [2306] = 391, - [2307] = 390, - [2308] = 365, - [2309] = 2282, + [2302] = 2282, + [2303] = 544, + [2304] = 2283, + [2305] = 630, + [2306] = 2283, + [2307] = 334, + [2308] = 2308, + [2309] = 2309, [2310] = 2310, - [2311] = 365, - [2312] = 2312, - [2313] = 2313, - [2314] = 391, - [2315] = 359, - [2316] = 2282, - [2317] = 390, - [2318] = 2310, - [2319] = 2319, - [2320] = 2283, - [2321] = 1971, - [2322] = 2292, - [2323] = 2283, - [2324] = 2292, - [2325] = 2292, - [2326] = 2326, - [2327] = 2292, - [2328] = 2283, - [2329] = 2292, - [2330] = 2283, - [2331] = 2283, - [2332] = 2292, - [2333] = 348, - [2334] = 2334, - [2335] = 2283, - [2336] = 2292, - [2337] = 2337, - [2338] = 2338, - [2339] = 2339, - [2340] = 2337, - [2341] = 2341, - [2342] = 2342, - [2343] = 2339, - [2344] = 2344, - [2345] = 2345, + [2311] = 2311, + [2312] = 539, + [2313] = 2310, + [2314] = 2314, + [2315] = 539, + [2316] = 2308, + [2317] = 334, + [2318] = 2308, + [2319] = 2308, + [2320] = 2309, + [2321] = 2308, + [2322] = 541, + [2323] = 2309, + [2324] = 2324, + [2325] = 2308, + [2326] = 2308, + [2327] = 2309, + [2328] = 2328, + [2329] = 2310, + [2330] = 2310, + [2331] = 2309, + [2332] = 544, + [2333] = 2310, + [2334] = 340, + [2335] = 2335, + [2336] = 2309, + [2337] = 541, + [2338] = 539, + [2339] = 544, + [2340] = 334, + [2341] = 2310, + [2342] = 340, + [2343] = 2311, + [2344] = 334, + [2345] = 2309, [2346] = 2346, - [2347] = 2347, - [2348] = 2348, - [2349] = 2347, - [2350] = 2350, - [2351] = 2344, - [2352] = 2352, - [2353] = 2339, - [2354] = 2352, - [2355] = 2339, - [2356] = 2347, - [2357] = 2357, - [2358] = 2352, - [2359] = 2359, - [2360] = 2352, - [2361] = 2344, - [2362] = 2347, - [2363] = 391, - [2364] = 2339, - [2365] = 365, - [2366] = 359, - [2367] = 390, - [2368] = 2352, - [2369] = 2339, - [2370] = 1986, - [2371] = 2352, - [2372] = 2339, - [2373] = 348, - [2374] = 2347, - [2375] = 2344, - [2376] = 2352, - [2377] = 2339, - [2378] = 2347, - [2379] = 2344, - [2380] = 2344, - [2381] = 2352, - [2382] = 2347, - [2383] = 2347, - [2384] = 2344, - [2385] = 2339, - [2386] = 2352, - [2387] = 2344, - [2388] = 2388, - [2389] = 2345, - [2390] = 2347, - [2391] = 2344, - [2392] = 2392, - [2393] = 2393, - [2394] = 2393, + [2347] = 544, + [2348] = 541, + [2349] = 2309, + [2350] = 2310, + [2351] = 2036, + [2352] = 2308, + [2353] = 340, + [2354] = 2354, + [2355] = 2355, + [2356] = 2310, + [2357] = 2308, + [2358] = 2310, + [2359] = 2028, + [2360] = 2335, + [2361] = 2361, + [2362] = 2309, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 2363, + [2367] = 2367, + [2368] = 2368, + [2369] = 2365, + [2370] = 2370, + [2371] = 2371, + [2372] = 2368, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 2367, + [2378] = 340, + [2379] = 334, + [2380] = 539, + [2381] = 2365, + [2382] = 2365, + [2383] = 2383, + [2384] = 2367, + [2385] = 2368, + [2386] = 2367, + [2387] = 2363, + [2388] = 541, + [2389] = 2028, + [2390] = 2363, + [2391] = 2368, + [2392] = 2367, + [2393] = 2363, + [2394] = 2365, [2395] = 2395, - [2396] = 2396, - [2397] = 2397, - [2398] = 2393, - [2399] = 2393, - [2400] = 2397, - [2401] = 2397, - [2402] = 2402, - [2403] = 2326, - [2404] = 2397, - [2405] = 2393, - [2406] = 2393, - [2407] = 2397, - [2408] = 2393, - [2409] = 2409, - [2410] = 2396, - [2411] = 2397, - [2412] = 2397, - [2413] = 2397, - [2414] = 2397, - [2415] = 2396, - [2416] = 2416, - [2417] = 2393, - [2418] = 2416, + [2396] = 2368, + [2397] = 2368, + [2398] = 2367, + [2399] = 2399, + [2400] = 2367, + [2401] = 2401, + [2402] = 544, + [2403] = 2363, + [2404] = 2365, + [2405] = 2395, + [2406] = 2365, + [2407] = 2365, + [2408] = 2368, + [2409] = 2367, + [2410] = 2363, + [2411] = 2368, + [2412] = 2363, + [2413] = 2364, + [2414] = 2367, + [2415] = 2363, + [2416] = 2365, + [2417] = 2368, + [2418] = 2418, [2419] = 2419, - [2420] = 2393, + [2420] = 2418, [2421] = 2421, - [2422] = 2409, - [2423] = 2393, + [2422] = 2422, + [2423] = 2419, [2424] = 2424, - [2425] = 2393, - [2426] = 2424, - [2427] = 2393, - [2428] = 2419, - [2429] = 2397, - [2430] = 2421, - [2431] = 2397, - [2432] = 2393, - [2433] = 2393, - [2434] = 2396, - [2435] = 2421, - [2436] = 2421, - [2437] = 2393, - [2438] = 2438, - [2439] = 2393, - [2440] = 2419, - [2441] = 2319, - [2442] = 2416, - [2443] = 2393, - [2444] = 2444, - [2445] = 2397, - [2446] = 2392, - [2447] = 2416, - [2448] = 2397, + [2425] = 2425, + [2426] = 2421, + [2427] = 2418, + [2428] = 2421, + [2429] = 2418, + [2430] = 2422, + [2431] = 2421, + [2432] = 2432, + [2433] = 2418, + [2434] = 2421, + [2435] = 2435, + [2436] = 2436, + [2437] = 2437, + [2438] = 2425, + [2439] = 2421, + [2440] = 2440, + [2441] = 2421, + [2442] = 2442, + [2443] = 2424, + [2444] = 2422, + [2445] = 2425, + [2446] = 2446, + [2447] = 2418, + [2448] = 2436, [2449] = 2419, - [2450] = 2416, - [2451] = 2409, - [2452] = 2397, - [2453] = 2424, - [2454] = 2397, - [2455] = 2455, - [2456] = 2419, - [2457] = 2457, - [2458] = 2396, - [2459] = 2421, - [2460] = 2424, - [2461] = 2393, - [2462] = 2397, - [2463] = 2396, - [2464] = 2419, - [2465] = 2396, - [2466] = 2409, - [2467] = 2397, - [2468] = 2409, - [2469] = 2395, - [2470] = 2397, - [2471] = 2409, - [2472] = 2397, - [2473] = 2419, - [2474] = 2424, - [2475] = 2416, - [2476] = 2393, - [2477] = 2393, - [2478] = 2424, - [2479] = 2421, - [2480] = 2396, - [2481] = 2419, - [2482] = 2424, - [2483] = 2424, - [2484] = 2484, - [2485] = 2457, - [2486] = 2416, - [2487] = 2487, - [2488] = 2416, - [2489] = 2397, - [2490] = 2424, - [2491] = 2392, - [2492] = 2393, - [2493] = 2421, - [2494] = 2393, - [2495] = 2409, - [2496] = 2397, - [2497] = 2421, - [2498] = 2498, - [2499] = 2409, + [2450] = 2361, + [2451] = 2418, + [2452] = 2435, + [2453] = 2440, + [2454] = 2432, + [2455] = 2422, + [2456] = 2421, + [2457] = 2436, + [2458] = 2418, + [2459] = 2419, + [2460] = 2419, + [2461] = 2418, + [2462] = 2418, + [2463] = 2421, + [2464] = 2418, + [2465] = 2422, + [2466] = 2425, + [2467] = 2467, + [2468] = 2421, + [2469] = 2435, + [2470] = 2421, + [2471] = 2418, + [2472] = 2328, + [2473] = 2432, + [2474] = 2435, + [2475] = 2421, + [2476] = 2436, + [2477] = 2425, + [2478] = 2418, + [2479] = 2425, + [2480] = 2421, + [2481] = 2418, + [2482] = 2436, + [2483] = 2419, + [2484] = 2418, + [2485] = 2435, + [2486] = 2418, + [2487] = 2432, + [2488] = 2418, + [2489] = 2421, + [2490] = 2432, + [2491] = 2418, + [2492] = 2421, + [2493] = 2425, + [2494] = 2418, + [2495] = 2418, + [2496] = 2421, + [2497] = 2422, + [2498] = 2419, + [2499] = 2422, [2500] = 2421, - [2501] = 2397, - [2502] = 2409, - [2503] = 2396, - [2504] = 2419, - [2505] = 2416, - [2506] = 391, - [2507] = 377, - [2508] = 2508, - [2509] = 2509, - [2510] = 2509, - [2511] = 2509, - [2512] = 2509, - [2513] = 2509, - [2514] = 2514, + [2501] = 2421, + [2502] = 2436, + [2503] = 2467, + [2504] = 2422, + [2505] = 2432, + [2506] = 2425, + [2507] = 2435, + [2508] = 2421, + [2509] = 2436, + [2510] = 2436, + [2511] = 2425, + [2512] = 2432, + [2513] = 2422, + [2514] = 2421, [2515] = 2515, - [2516] = 2516, - [2517] = 348, - [2518] = 2514, - [2519] = 2519, - [2520] = 2520, - [2521] = 365, - [2522] = 348, - [2523] = 359, - [2524] = 2509, - [2525] = 2525, - [2526] = 2509, - [2527] = 2509, - [2528] = 348, - [2529] = 348, - [2530] = 2525, + [2516] = 2435, + [2517] = 2432, + [2518] = 2518, + [2519] = 2419, + [2520] = 2418, + [2521] = 2521, + [2522] = 2421, + [2523] = 2419, + [2524] = 2418, + [2525] = 2435, + [2526] = 2432, + [2527] = 2435, + [2528] = 2436, + [2529] = 2421, + [2530] = 2467, [2531] = 2531, - [2532] = 348, + [2532] = 544, [2533] = 2533, - [2534] = 348, - [2535] = 2509, - [2536] = 390, - [2537] = 348, - [2538] = 2509, - [2539] = 348, - [2540] = 2531, - [2541] = 2509, - [2542] = 348, - [2543] = 2520, + [2534] = 544, + [2535] = 544, + [2536] = 541, + [2537] = 2537, + [2538] = 2538, + [2539] = 2539, + [2540] = 2533, + [2541] = 2541, + [2542] = 2537, + [2543] = 2533, [2544] = 2544, [2545] = 2545, - [2546] = 2545, - [2547] = 2545, - [2548] = 2548, - [2549] = 2544, - [2550] = 2545, - [2551] = 2545, - [2552] = 2544, - [2553] = 2544, - [2554] = 2544, - [2555] = 2544, - [2556] = 2545, - [2557] = 2544, - [2558] = 2545, - [2559] = 2544, - [2560] = 2548, - [2561] = 2545, - [2562] = 2562, - [2563] = 2545, - [2564] = 2544, - [2565] = 2565, - [2566] = 2566, - [2567] = 2567, - [2568] = 2568, - [2569] = 2566, + [2546] = 334, + [2547] = 544, + [2548] = 632, + [2549] = 2549, + [2550] = 340, + [2551] = 2551, + [2552] = 2551, + [2553] = 2533, + [2554] = 544, + [2555] = 2533, + [2556] = 2533, + [2557] = 544, + [2558] = 2533, + [2559] = 2533, + [2560] = 2560, + [2561] = 539, + [2562] = 544, + [2563] = 2541, + [2564] = 2533, + [2565] = 2533, + [2566] = 544, + [2567] = 2533, + [2568] = 544, + [2569] = 2544, [2570] = 2570, - [2571] = 377, + [2571] = 2571, [2572] = 2572, - [2573] = 2573, + [2573] = 2571, [2574] = 2572, - [2575] = 2575, - [2576] = 2572, - [2577] = 2577, - [2578] = 321, - [2579] = 377, + [2575] = 2571, + [2576] = 2571, + [2577] = 2572, + [2578] = 2570, + [2579] = 2571, [2580] = 2580, - [2581] = 2575, + [2581] = 2572, [2582] = 2572, - [2583] = 2580, + [2583] = 2571, [2584] = 2572, - [2585] = 2577, - [2586] = 338, - [2587] = 324, - [2588] = 2580, - [2589] = 318, - [2590] = 343, - [2591] = 2580, - [2592] = 2572, - [2593] = 2577, - [2594] = 2577, - [2595] = 314, - [2596] = 2577, - [2597] = 2580, - [2598] = 2580, - [2599] = 2580, + [2585] = 2572, + [2586] = 2571, + [2587] = 2571, + [2588] = 2571, + [2589] = 2572, + [2590] = 2572, + [2591] = 2591, + [2592] = 2591, + [2593] = 2593, + [2594] = 632, + [2595] = 2595, + [2596] = 2596, + [2597] = 2597, + [2598] = 2598, + [2599] = 626, [2600] = 2600, [2601] = 2601, - [2602] = 2577, + [2602] = 2602, [2603] = 2603, - [2604] = 2604, - [2605] = 2580, - [2606] = 2606, - [2607] = 2600, - [2608] = 2608, - [2609] = 2572, - [2610] = 2572, - [2611] = 2577, - [2612] = 2573, - [2613] = 2580, - [2614] = 2572, - [2615] = 379, - [2616] = 2577, - [2617] = 379, + [2604] = 2603, + [2605] = 632, + [2606] = 2602, + [2607] = 2603, + [2608] = 713, + [2609] = 2609, + [2610] = 727, + [2611] = 2603, + [2612] = 714, + [2613] = 2609, + [2614] = 2614, + [2615] = 2609, + [2616] = 704, + [2617] = 2598, [2618] = 2618, - [2619] = 2619, + [2619] = 2598, [2620] = 2603, - [2621] = 2577, - [2622] = 2608, - [2623] = 2619, - [2624] = 2624, - [2625] = 2624, - [2626] = 338, - [2627] = 2624, - [2628] = 2624, - [2629] = 2624, - [2630] = 2624, - [2631] = 316, - [2632] = 326, - [2633] = 2624, - [2634] = 321, - [2635] = 2624, - [2636] = 2636, - [2637] = 2624, - [2638] = 2624, - [2639] = 2624, - [2640] = 2624, - [2641] = 2624, - [2642] = 2624, - [2643] = 314, - [2644] = 324, - [2645] = 379, - [2646] = 377, - [2647] = 379, - [2648] = 377, - [2649] = 2624, - [2650] = 2650, - [2651] = 319, - [2652] = 343, - [2653] = 2650, - [2654] = 318, - [2655] = 318, - [2656] = 319, - [2657] = 2657, - [2658] = 326, - [2659] = 2659, - [2660] = 2659, - [2661] = 2659, - [2662] = 2662, - [2663] = 2663, + [2621] = 2614, + [2622] = 630, + [2623] = 2623, + [2624] = 2609, + [2625] = 2625, + [2626] = 2598, + [2627] = 2609, + [2628] = 2603, + [2629] = 2609, + [2630] = 2598, + [2631] = 2623, + [2632] = 2609, + [2633] = 2603, + [2634] = 2598, + [2635] = 2603, + [2636] = 2609, + [2637] = 2598, + [2638] = 2609, + [2639] = 2639, + [2640] = 2625, + [2641] = 2641, + [2642] = 2642, + [2643] = 630, + [2644] = 2598, + [2645] = 2601, + [2646] = 657, + [2647] = 2598, + [2648] = 2603, + [2649] = 2639, + [2650] = 658, + [2651] = 630, + [2652] = 2652, + [2653] = 727, + [2654] = 2652, + [2655] = 649, + [2656] = 2652, + [2657] = 2652, + [2658] = 2652, + [2659] = 632, + [2660] = 676, + [2661] = 714, + [2662] = 2652, + [2663] = 626, [2664] = 2664, - [2665] = 321, - [2666] = 2666, - [2667] = 2667, - [2668] = 2668, - [2669] = 316, - [2670] = 326, - [2671] = 314, - [2672] = 343, - [2673] = 338, - [2674] = 324, - [2675] = 2675, + [2665] = 2652, + [2666] = 2652, + [2667] = 2652, + [2668] = 2652, + [2669] = 2652, + [2670] = 630, + [2671] = 2652, + [2672] = 2652, + [2673] = 2652, + [2674] = 704, + [2675] = 632, [2676] = 2676, - [2677] = 343, - [2678] = 2659, - [2679] = 318, - [2680] = 314, - [2681] = 2659, - [2682] = 321, - [2683] = 2683, - [2684] = 2659, - [2685] = 2659, + [2677] = 2664, + [2678] = 2652, + [2679] = 713, + [2680] = 657, + [2681] = 704, + [2682] = 676, + [2683] = 713, + [2684] = 657, + [2685] = 2685, [2686] = 2686, - [2687] = 319, + [2687] = 727, [2688] = 2688, - [2689] = 338, - [2690] = 2664, - [2691] = 2619, - [2692] = 324, - [2693] = 2683, - [2694] = 316, - [2695] = 2618, - [2696] = 2659, + [2689] = 649, + [2690] = 649, + [2691] = 2691, + [2692] = 658, + [2693] = 2693, + [2694] = 714, + [2695] = 2693, + [2696] = 2696, [2697] = 2697, - [2698] = 2675, + [2698] = 2693, [2699] = 2699, - [2700] = 2688, - [2701] = 2659, - [2702] = 2702, + [2700] = 2685, + [2701] = 2693, + [2702] = 704, [2703] = 2703, [2704] = 2704, - [2705] = 2705, - [2706] = 2702, - [2707] = 2704, - [2708] = 2708, - [2709] = 2705, - [2710] = 2710, + [2705] = 2641, + [2706] = 2686, + [2707] = 2707, + [2708] = 714, + [2709] = 2625, + [2710] = 2693, [2711] = 2711, - [2712] = 2712, - [2713] = 2713, - [2714] = 2714, - [2715] = 2705, - [2716] = 2716, - [2717] = 2717, - [2718] = 2714, - [2719] = 2710, - [2720] = 2702, + [2712] = 2699, + [2713] = 2693, + [2714] = 2693, + [2715] = 626, + [2716] = 676, + [2717] = 626, + [2718] = 2688, + [2719] = 658, + [2720] = 2720, [2721] = 2721, - [2722] = 2708, + [2722] = 657, [2723] = 2723, - [2724] = 2721, - [2725] = 2717, - [2726] = 2726, - [2727] = 2712, - [2728] = 2714, - [2729] = 2721, - [2730] = 2717, - [2731] = 2704, - [2732] = 2732, + [2724] = 2693, + [2725] = 2693, + [2726] = 713, + [2727] = 727, + [2728] = 713, + [2729] = 2729, + [2730] = 2730, + [2731] = 2731, + [2732] = 2729, [2733] = 2733, - [2734] = 2710, - [2735] = 2702, - [2736] = 2713, - [2737] = 2723, - [2738] = 2717, - [2739] = 2713, - [2740] = 2702, - [2741] = 2708, + [2734] = 2734, + [2735] = 2735, + [2736] = 2736, + [2737] = 2737, + [2738] = 2738, + [2739] = 2731, + [2740] = 2740, + [2741] = 2733, [2742] = 2742, - [2743] = 2712, - [2744] = 2710, - [2745] = 2742, - [2746] = 2714, - [2747] = 2702, - [2748] = 2742, - [2749] = 2705, - [2750] = 2723, - [2751] = 2742, - [2752] = 2721, - [2753] = 2742, - [2754] = 2712, - [2755] = 2742, - [2756] = 2705, - [2757] = 2742, - [2758] = 2705, - [2759] = 2716, - [2760] = 2721, - [2761] = 2705, - [2762] = 2708, - [2763] = 2712, - [2764] = 2716, - [2765] = 2704, - [2766] = 2710, - [2767] = 2767, - [2768] = 2723, - [2769] = 2769, - [2770] = 2714, - [2771] = 2702, - [2772] = 2772, - [2773] = 2716, - [2774] = 2774, - [2775] = 2713, - [2776] = 2776, - [2777] = 2717, - [2778] = 2716, - [2779] = 2710, - [2780] = 2712, - [2781] = 343, - [2782] = 2782, - [2783] = 2705, - [2784] = 2716, - [2785] = 2704, - [2786] = 2717, - [2787] = 2712, - [2788] = 2714, - [2789] = 2708, - [2790] = 2723, - [2791] = 2713, - [2792] = 2712, - [2793] = 2716, - [2794] = 2723, - [2795] = 2795, - [2796] = 316, - [2797] = 338, - [2798] = 2705, - [2799] = 2742, - [2800] = 2704, - [2801] = 2705, - [2802] = 2708, - [2803] = 2782, - [2804] = 2705, - [2805] = 2805, - [2806] = 2742, - [2807] = 2807, - [2808] = 2704, - [2809] = 2708, - [2810] = 2710, - [2811] = 321, - [2812] = 2713, - [2813] = 2717, - [2814] = 2814, - [2815] = 2815, - [2816] = 319, - [2817] = 2817, + [2743] = 2743, + [2744] = 2744, + [2745] = 2745, + [2746] = 2737, + [2747] = 2743, + [2748] = 2748, + [2749] = 2749, + [2750] = 2750, + [2751] = 2751, + [2752] = 2736, + [2753] = 2743, + [2754] = 2736, + [2755] = 2738, + [2756] = 2733, + [2757] = 2731, + [2758] = 2737, + [2759] = 2759, + [2760] = 2760, + [2761] = 2738, + [2762] = 2737, + [2763] = 2763, + [2764] = 2764, + [2765] = 2735, + [2766] = 2735, + [2767] = 2734, + [2768] = 2764, + [2769] = 2734, + [2770] = 2729, + [2771] = 2764, + [2772] = 2729, + [2773] = 2737, + [2774] = 2730, + [2775] = 2764, + [2776] = 2730, + [2777] = 2764, + [2778] = 657, + [2779] = 2764, + [2780] = 2737, + [2781] = 2764, + [2782] = 2737, + [2783] = 2730, + [2784] = 2729, + [2785] = 2745, + [2786] = 2745, + [2787] = 2745, + [2788] = 2734, + [2789] = 2735, + [2790] = 2790, + [2791] = 2736, + [2792] = 2792, + [2793] = 2764, + [2794] = 2794, + [2795] = 2743, + [2796] = 2730, + [2797] = 2733, + [2798] = 2737, + [2799] = 2764, + [2800] = 2800, + [2801] = 2736, + [2802] = 2802, + [2803] = 2743, + [2804] = 2733, + [2805] = 2731, + [2806] = 2729, + [2807] = 2738, + [2808] = 2737, + [2809] = 2809, + [2810] = 2735, + [2811] = 2734, + [2812] = 2737, + [2813] = 2731, + [2814] = 2729, + [2815] = 2734, + [2816] = 2730, + [2817] = 2738, [2818] = 2818, - [2819] = 2705, - [2820] = 2723, - [2821] = 2713, - [2822] = 324, - [2823] = 2721, - [2824] = 2714, - [2825] = 321, - [2826] = 2826, - [2827] = 2713, - [2828] = 2828, - [2829] = 2705, - [2830] = 2702, + [2819] = 2735, + [2820] = 2737, + [2821] = 2731, + [2822] = 2733, + [2823] = 2743, + [2824] = 2824, + [2825] = 2736, + [2826] = 2738, + [2827] = 2827, + [2828] = 2737, + [2829] = 2731, + [2830] = 2738, [2831] = 2831, - [2832] = 2710, - [2833] = 2713, - [2834] = 2716, - [2835] = 2714, - [2836] = 2705, - [2837] = 318, - [2838] = 326, - [2839] = 2721, - [2840] = 2704, - [2841] = 2712, - [2842] = 2708, - [2843] = 2843, - [2844] = 2717, - [2845] = 2705, - [2846] = 2704, - [2847] = 2716, - [2848] = 2723, + [2832] = 2745, + [2833] = 2736, + [2834] = 2834, + [2835] = 2743, + [2836] = 2733, + [2837] = 2731, + [2838] = 2733, + [2839] = 2738, + [2840] = 2737, + [2841] = 2841, + [2842] = 2735, + [2843] = 2734, + [2844] = 2844, + [2845] = 2743, + [2846] = 2745, + [2847] = 2737, + [2848] = 2730, [2849] = 2849, - [2850] = 338, - [2851] = 2721, - [2852] = 324, - [2853] = 2723, - [2854] = 318, - [2855] = 343, - [2856] = 314, - [2857] = 2721, - [2858] = 2606, - [2859] = 316, - [2860] = 314, - [2861] = 319, - [2862] = 2708, - [2863] = 326, - [2864] = 2717, - [2865] = 2710, - [2866] = 2866, - [2867] = 2714, - [2868] = 2772, - [2869] = 2702, - [2870] = 2870, - [2871] = 2871, - [2872] = 2872, - [2873] = 2873, - [2874] = 2874, - [2875] = 2873, - [2876] = 2876, - [2877] = 2874, - [2878] = 2871, - [2879] = 2873, - [2880] = 2876, - [2881] = 2881, - [2882] = 2871, - [2883] = 2874, - [2884] = 2884, - [2885] = 2873, - [2886] = 2876, - [2887] = 2876, - [2888] = 2871, - [2889] = 2874, - [2890] = 2890, - [2891] = 2876, - [2892] = 2892, - [2893] = 2873, - [2894] = 2871, - [2895] = 2895, + [2850] = 2736, + [2851] = 2735, + [2852] = 2852, + [2853] = 2745, + [2854] = 2763, + [2855] = 2790, + [2856] = 2600, + [2857] = 2844, + [2858] = 676, + [2859] = 626, + [2860] = 2790, + [2861] = 2734, + [2862] = 2729, + [2863] = 658, + [2864] = 657, + [2865] = 2736, + [2866] = 727, + [2867] = 2743, + [2868] = 2733, + [2869] = 2731, + [2870] = 2745, + [2871] = 2738, + [2872] = 2737, + [2873] = 649, + [2874] = 2735, + [2875] = 2734, + [2876] = 626, + [2877] = 714, + [2878] = 713, + [2879] = 2730, + [2880] = 727, + [2881] = 714, + [2882] = 704, + [2883] = 2729, + [2884] = 704, + [2885] = 676, + [2886] = 2730, + [2887] = 658, + [2888] = 2790, + [2889] = 649, + [2890] = 2790, + [2891] = 2745, + [2892] = 2790, + [2893] = 2790, + [2894] = 2790, + [2895] = 2790, [2896] = 2896, [2897] = 2897, - [2898] = 2871, - [2899] = 2873, - [2900] = 2900, - [2901] = 2874, - [2902] = 2892, - [2903] = 2892, - [2904] = 2892, - [2905] = 2892, - [2906] = 2892, - [2907] = 2874, - [2908] = 2873, - [2909] = 2876, - [2910] = 2892, - [2911] = 2892, - [2912] = 2897, - [2913] = 2876, - [2914] = 2874, - [2915] = 2892, + [2898] = 2898, + [2899] = 2899, + [2900] = 2897, + [2901] = 2901, + [2902] = 2899, + [2903] = 2901, + [2904] = 2901, + [2905] = 2899, + [2906] = 2906, + [2907] = 2897, + [2908] = 2898, + [2909] = 2899, + [2910] = 2901, + [2911] = 2911, + [2912] = 2898, + [2913] = 2913, + [2914] = 2898, + [2915] = 2898, [2916] = 2916, - [2917] = 2871, - [2918] = 2873, - [2919] = 2919, - [2920] = 2873, - [2921] = 2876, - [2922] = 2890, - [2923] = 2874, - [2924] = 2874, + [2917] = 2917, + [2918] = 2897, + [2919] = 2897, + [2920] = 2898, + [2921] = 2899, + [2922] = 2922, + [2923] = 2901, + [2924] = 2924, [2925] = 2916, - [2926] = 2871, - [2927] = 2871, - [2928] = 2916, - [2929] = 2916, - [2930] = 2916, - [2931] = 2916, - [2932] = 2916, - [2933] = 2916, - [2934] = 2876, - [2935] = 2916, - [2936] = 2936, - [2937] = 2937, - [2938] = 2938, + [2926] = 2899, + [2927] = 2897, + [2928] = 2901, + [2929] = 2917, + [2930] = 2917, + [2931] = 2917, + [2932] = 2917, + [2933] = 2917, + [2934] = 2897, + [2935] = 2897, + [2936] = 2917, + [2937] = 2917, + [2938] = 2898, [2939] = 2939, - [2940] = 2940, - [2941] = 2941, - [2942] = 2942, - [2943] = 2943, - [2944] = 2937, - [2945] = 2945, - [2946] = 2946, + [2940] = 2901, + [2941] = 2899, + [2942] = 2896, + [2943] = 2898, + [2944] = 2944, + [2945] = 2901, + [2946] = 2917, [2947] = 2947, - [2948] = 2948, + [2948] = 2901, [2949] = 2949, - [2950] = 2949, - [2951] = 1402, - [2952] = 2949, - [2953] = 2953, - [2954] = 2954, - [2955] = 2936, - [2956] = 2956, - [2957] = 2946, - [2958] = 2954, - [2959] = 2959, - [2960] = 2939, - [2961] = 1445, + [2950] = 2944, + [2951] = 2898, + [2952] = 2944, + [2953] = 2944, + [2954] = 2899, + [2955] = 2944, + [2956] = 2944, + [2957] = 2944, + [2958] = 2897, + [2959] = 2944, + [2960] = 2944, + [2961] = 2899, [2962] = 2962, - [2963] = 2946, + [2963] = 2963, [2964] = 2964, [2965] = 2965, - [2966] = 2956, - [2967] = 2940, - [2968] = 2959, - [2969] = 2964, + [2966] = 2966, + [2967] = 2967, + [2968] = 2968, + [2969] = 2969, [2970] = 2970, - [2971] = 2943, - [2972] = 2946, - [2973] = 2962, + [2971] = 2971, + [2972] = 2972, + [2973] = 2973, [2974] = 2974, - [2975] = 2937, + [2975] = 2975, [2976] = 2976, [2977] = 2977, [2978] = 2978, [2979] = 2979, - [2980] = 2938, - [2981] = 2956, - [2982] = 2959, - [2983] = 2965, - [2984] = 2984, - [2985] = 2962, - [2986] = 2962, - [2987] = 2948, - [2988] = 2959, - [2989] = 2939, - [2990] = 2953, - [2991] = 2954, - [2992] = 2992, - [2993] = 2993, - [2994] = 2994, - [2995] = 2970, - [2996] = 2994, - [2997] = 2964, - [2998] = 2962, - [2999] = 2999, - [3000] = 2949, - [3001] = 3001, - [3002] = 2940, - [3003] = 3003, - [3004] = 2994, - [3005] = 3005, - [3006] = 2956, - [3007] = 3007, - [3008] = 2994, - [3009] = 2938, - [3010] = 2970, - [3011] = 2977, - [3012] = 2954, - [3013] = 3013, - [3014] = 2939, - [3015] = 2994, - [3016] = 2965, - [3017] = 2962, - [3018] = 2993, - [3019] = 2936, - [3020] = 2978, - [3021] = 3021, - [3022] = 2940, - [3023] = 2964, - [3024] = 2938, - [3025] = 3025, - [3026] = 2949, - [3027] = 2956, - [3028] = 2978, - [3029] = 2948, - [3030] = 3030, - [3031] = 3031, - [3032] = 3021, - [3033] = 2940, - [3034] = 2977, - [3035] = 2939, - [3036] = 2974, - [3037] = 2956, - [3038] = 3038, - [3039] = 2977, - [3040] = 2943, - [3041] = 2948, - [3042] = 2947, - [3043] = 2937, - [3044] = 2954, - [3045] = 3045, - [3046] = 3046, + [2980] = 2980, + [2981] = 2981, + [2982] = 2982, + [2983] = 2983, + [2984] = 2964, + [2985] = 2965, + [2986] = 2966, + [2987] = 2967, + [2988] = 2983, + [2989] = 2989, + [2990] = 2981, + [2991] = 2980, + [2992] = 2968, + [2993] = 2972, + [2994] = 2974, + [2995] = 2969, + [2996] = 2979, + [2997] = 2970, + [2998] = 2971, + [2999] = 2972, + [3000] = 2973, + [3001] = 2978, + [3002] = 2975, + [3003] = 2976, + [3004] = 2977, + [3005] = 2978, + [3006] = 2979, + [3007] = 2983, + [3008] = 2980, + [3009] = 2977, + [3010] = 2981, + [3011] = 2982, + [3012] = 3012, + [3013] = 2976, + [3014] = 2975, + [3015] = 2966, + [3016] = 3016, + [3017] = 3017, + [3018] = 2980, + [3019] = 2973, + [3020] = 3020, + [3021] = 2964, + [3022] = 2972, + [3023] = 2965, + [3024] = 2971, + [3025] = 2970, + [3026] = 2969, + [3027] = 2968, + [3028] = 2981, + [3029] = 2989, + [3030] = 2975, + [3031] = 2989, + [3032] = 2983, + [3033] = 2965, + [3034] = 2964, + [3035] = 2968, + [3036] = 2982, + [3037] = 2981, + [3038] = 2969, + [3039] = 2980, + [3040] = 2966, + [3041] = 2979, + [3042] = 2970, + [3043] = 2971, + [3044] = 2972, + [3045] = 2973, + [3046] = 2967, [3047] = 2978, - [3048] = 2956, - [3049] = 2937, - [3050] = 2946, - [3051] = 2959, - [3052] = 2962, - [3053] = 1421, - [3054] = 2964, - [3055] = 2977, - [3056] = 2939, - [3057] = 3057, - [3058] = 3058, - [3059] = 2965, - [3060] = 3060, - [3061] = 2943, - [3062] = 2962, - [3063] = 3063, - [3064] = 2945, - [3065] = 3065, - [3066] = 2938, - [3067] = 2939, - [3068] = 2940, - [3069] = 2956, - [3070] = 3070, - [3071] = 3071, - [3072] = 3072, - [3073] = 2943, - [3074] = 2945, - [3075] = 2937, - [3076] = 2994, - [3077] = 2939, - [3078] = 2970, - [3079] = 3079, - [3080] = 2959, - [3081] = 2940, - [3082] = 2936, - [3083] = 2945, - [3084] = 2978, - [3085] = 2949, - [3086] = 2953, - [3087] = 2953, - [3088] = 2943, - [3089] = 2978, - [3090] = 2936, - [3091] = 2953, - [3092] = 3092, - [3093] = 2936, - [3094] = 2949, - [3095] = 3095, - [3096] = 2945, - [3097] = 3097, - [3098] = 2970, - [3099] = 3045, - [3100] = 2937, - [3101] = 3060, - [3102] = 3058, - [3103] = 2948, - [3104] = 2943, - [3105] = 2940, - [3106] = 2965, - [3107] = 2936, - [3108] = 3108, - [3109] = 3109, - [3110] = 2977, - [3111] = 3097, - [3112] = 3025, - [3113] = 2954, - [3114] = 2964, + [3048] = 2975, + [3049] = 2976, + [3050] = 2977, + [3051] = 2978, + [3052] = 2979, + [3053] = 2983, + [3054] = 2980, + [3055] = 2962, + [3056] = 2977, + [3057] = 2976, + [3058] = 2989, + [3059] = 2974, + [3060] = 2973, + [3061] = 2966, + [3062] = 2975, + [3063] = 2971, + [3064] = 2763, + [3065] = 2970, + [3066] = 2969, + [3067] = 2968, + [3068] = 2989, + [3069] = 2965, + [3070] = 2964, + [3071] = 2982, + [3072] = 2981, + [3073] = 2963, + [3074] = 2983, + [3075] = 1411, + [3076] = 2979, + [3077] = 1428, + [3078] = 2978, + [3079] = 2977, + [3080] = 2976, + [3081] = 2975, + [3082] = 2966, + [3083] = 1413, + [3084] = 2967, + [3085] = 3012, + [3086] = 2973, + [3087] = 3016, + [3088] = 3017, + [3089] = 2972, + [3090] = 2971, + [3091] = 3091, + [3092] = 2970, + [3093] = 2982, + [3094] = 3020, + [3095] = 2983, + [3096] = 2969, + [3097] = 2968, + [3098] = 3098, + [3099] = 3099, + [3100] = 2964, + [3101] = 2989, + [3102] = 2965, + [3103] = 2966, + [3104] = 3104, + [3105] = 2964, + [3106] = 2982, + [3107] = 2972, + [3108] = 2980, + [3109] = 2979, + [3110] = 2989, + [3111] = 2978, + [3112] = 2965, + [3113] = 3113, + [3114] = 3114, [3115] = 3115, - [3116] = 2978, - [3117] = 3071, - [3118] = 3092, - [3119] = 3065, - [3120] = 2962, - [3121] = 2959, + [3116] = 2977, + [3117] = 2976, + [3118] = 2975, + [3119] = 3119, + [3120] = 3120, + [3121] = 3121, [3122] = 3122, - [3123] = 2948, - [3124] = 2946, - [3125] = 2782, - [3126] = 2954, - [3127] = 2964, - [3128] = 2946, - [3129] = 2954, - [3130] = 2949, - [3131] = 2945, - [3132] = 3095, - [3133] = 2970, + [3123] = 2974, + [3124] = 2973, + [3125] = 2982, + [3126] = 2972, + [3127] = 3127, + [3128] = 3128, + [3129] = 2971, + [3130] = 2970, + [3131] = 2969, + [3132] = 2968, + [3133] = 2989, [3134] = 3134, - [3135] = 3122, - [3136] = 2946, - [3137] = 2970, + [3135] = 3135, + [3136] = 2965, + [3137] = 3137, [3138] = 3138, - [3139] = 3109, - [3140] = 2993, - [3141] = 2970, - [3142] = 3038, - [3143] = 2994, - [3144] = 2938, - [3145] = 2962, - [3146] = 2965, - [3147] = 2938, - [3148] = 2953, - [3149] = 2939, + [3139] = 2964, + [3140] = 2982, + [3141] = 3120, + [3142] = 3115, + [3143] = 3113, + [3144] = 3104, + [3145] = 3099, + [3146] = 2972, + [3147] = 3147, + [3148] = 2981, + [3149] = 3149, [3150] = 3150, - [3151] = 3115, - [3152] = 3065, - [3153] = 2959, - [3154] = 2962, - [3155] = 3115, - [3156] = 3065, - [3157] = 2936, - [3158] = 2953, - [3159] = 3115, - [3160] = 3065, - [3161] = 2965, - [3162] = 2992, - [3163] = 3115, - [3164] = 3065, - [3165] = 2984, - [3166] = 2979, - [3167] = 3115, - [3168] = 3065, - [3169] = 2945, - [3170] = 2962, - [3171] = 3115, - [3172] = 3065, - [3173] = 2956, - [3174] = 3057, - [3175] = 3115, - [3176] = 3065, - [3177] = 2970, - [3178] = 3150, - [3179] = 2976, - [3180] = 2994, - [3181] = 3001, - [3182] = 2937, - [3183] = 2948, - [3184] = 2948, - [3185] = 3031, - [3186] = 3070, - [3187] = 2962, - [3188] = 2938, - [3189] = 2965, - [3190] = 2949, - [3191] = 2943, - [3192] = 2962, - [3193] = 2938, - [3194] = 2978, - [3195] = 3195, - [3196] = 2977, - [3197] = 2977, - [3198] = 2954, - [3199] = 2962, - [3200] = 2994, - [3201] = 2978, - [3202] = 2946, - [3203] = 2977, - [3204] = 2959, - [3205] = 2962, - [3206] = 2964, - [3207] = 2964, - [3208] = 2962, - [3209] = 2948, - [3210] = 2965, - [3211] = 3211, - [3212] = 2940, - [3213] = 2962, - [3214] = 2936, - [3215] = 2940, - [3216] = 3108, - [3217] = 2940, - [3218] = 2953, - [3219] = 3211, - [3220] = 2962, - [3221] = 2943, - [3222] = 2937, - [3223] = 3072, - [3224] = 2945, - [3225] = 3211, - [3226] = 2962, - [3227] = 2945, - [3228] = 3005, - [3229] = 2953, - [3230] = 3211, - [3231] = 3231, - [3232] = 3115, - [3233] = 3211, - [3234] = 3211, - [3235] = 2962, - [3236] = 3211, - [3237] = 2962, - [3238] = 3211, - [3239] = 3211, - [3240] = 3240, - [3241] = 3240, - [3242] = 3240, - [3243] = 3240, - [3244] = 3240, - [3245] = 3240, - [3246] = 3240, - [3247] = 3240, - [3248] = 3240, - [3249] = 3240, - [3250] = 3240, - [3251] = 3240, - [3252] = 3240, - [3253] = 3253, - [3254] = 3254, - [3255] = 3240, - [3256] = 3240, - [3257] = 3240, - [3258] = 3240, - [3259] = 3240, - [3260] = 3240, - [3261] = 3240, - [3262] = 3240, - [3263] = 3240, + [3151] = 2980, + [3152] = 2979, + [3153] = 3153, + [3154] = 3138, + [3155] = 3155, + [3156] = 2972, + [3157] = 3150, + [3158] = 2978, + [3159] = 2977, + [3160] = 2968, + [3161] = 3161, + [3162] = 2967, + [3163] = 2966, + [3164] = 2966, + [3165] = 3137, + [3166] = 2976, + [3167] = 2975, + [3168] = 2969, + [3169] = 2967, + [3170] = 2974, + [3171] = 2972, + [3172] = 2967, + [3173] = 2974, + [3174] = 2973, + [3175] = 2970, + [3176] = 2972, + [3177] = 3120, + [3178] = 3099, + [3179] = 2972, + [3180] = 2971, + [3181] = 3120, + [3182] = 3099, + [3183] = 2967, + [3184] = 3184, + [3185] = 3120, + [3186] = 3099, + [3187] = 3187, + [3188] = 3188, + [3189] = 3120, + [3190] = 3099, + [3191] = 2970, + [3192] = 2969, + [3193] = 3120, + [3194] = 3099, + [3195] = 2983, + [3196] = 3196, + [3197] = 3120, + [3198] = 3099, + [3199] = 2968, + [3200] = 2972, + [3201] = 3120, + [3202] = 3099, + [3203] = 2974, + [3204] = 3204, + [3205] = 3205, + [3206] = 3206, + [3207] = 3207, + [3208] = 3135, + [3209] = 2971, + [3210] = 3134, + [3211] = 3153, + [3212] = 3114, + [3213] = 2981, + [3214] = 3207, + [3215] = 2972, + [3216] = 3216, + [3217] = 2967, + [3218] = 3218, + [3219] = 2981, + [3220] = 2973, + [3221] = 3221, + [3222] = 2972, + [3223] = 2974, + [3224] = 2975, + [3225] = 2965, + [3226] = 2976, + [3227] = 2977, + [3228] = 3184, + [3229] = 3187, + [3230] = 3205, + [3231] = 3188, + [3232] = 2989, + [3233] = 2972, + [3234] = 3122, + [3235] = 2978, + [3236] = 2979, + [3237] = 2982, + [3238] = 2980, + [3239] = 3204, + [3240] = 2972, + [3241] = 2964, + [3242] = 2972, + [3243] = 3122, + [3244] = 3244, + [3245] = 3245, + [3246] = 2972, + [3247] = 2974, + [3248] = 2962, + [3249] = 3249, + [3250] = 3250, + [3251] = 2972, + [3252] = 2983, + [3253] = 3196, + [3254] = 3147, + [3255] = 3128, + [3256] = 3122, + [3257] = 3127, + [3258] = 3249, + [3259] = 2972, + [3260] = 3122, + [3261] = 3122, + [3262] = 3122, + [3263] = 2975, + [3264] = 3122, + [3265] = 3122, + [3266] = 3266, + [3267] = 3267, + [3268] = 3267, + [3269] = 3267, + [3270] = 3267, + [3271] = 3267, + [3272] = 3267, + [3273] = 3267, + [3274] = 3267, + [3275] = 3267, + [3276] = 3267, + [3277] = 3267, + [3278] = 3267, + [3279] = 3279, + [3280] = 3267, + [3281] = 3267, + [3282] = 3267, + [3283] = 3267, + [3284] = 3267, + [3285] = 3267, + [3286] = 3267, + [3287] = 3267, + [3288] = 3267, + [3289] = 3267, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -7901,18 +7942,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [32] = {.lex_state = 39, .external_lex_state = 3}, [33] = {.lex_state = 39, .external_lex_state = 3}, [34] = {.lex_state = 39, .external_lex_state = 3}, - [35] = {.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 = 2}, + [35] = {.lex_state = 39, .external_lex_state = 3}, + [36] = {.lex_state = 39, .external_lex_state = 2}, + [37] = {.lex_state = 39, .external_lex_state = 2}, + [38] = {.lex_state = 39, .external_lex_state = 3}, [39] = {.lex_state = 39, .external_lex_state = 3}, - [40] = {.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 = 4}, - [44] = {.lex_state = 39, .external_lex_state = 4}, + [44] = {.lex_state = 39, .external_lex_state = 2}, [45] = {.lex_state = 39, .external_lex_state = 4}, - [46] = {.lex_state = 39, .external_lex_state = 3}, + [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}, @@ -7928,18 +7969,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [62] = {.lex_state = 39, .external_lex_state = 3}, [63] = {.lex_state = 39, .external_lex_state = 4}, - [64] = {.lex_state = 39, .external_lex_state = 4}, + [64] = {.lex_state = 39, .external_lex_state = 3}, [65] = {.lex_state = 39, .external_lex_state = 4}, [66] = {.lex_state = 39, .external_lex_state = 4}, - [67] = {.lex_state = 39, .external_lex_state = 2}, + [67] = {.lex_state = 39, .external_lex_state = 4}, [68] = {.lex_state = 39, .external_lex_state = 4}, - [69] = {.lex_state = 39, .external_lex_state = 4}, + [69] = {.lex_state = 39, .external_lex_state = 2}, [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 = 2}, + [73] = {.lex_state = 39, .external_lex_state = 4}, [74] = {.lex_state = 39, .external_lex_state = 4}, [75] = {.lex_state = 39, .external_lex_state = 4}, [76] = {.lex_state = 3, .external_lex_state = 5}, @@ -7985,90 +8026,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 39, .external_lex_state = 5}, [117] = {.lex_state = 39, .external_lex_state = 5}, [118] = {.lex_state = 39, .external_lex_state = 5}, - [119] = {.lex_state = 39, .external_lex_state = 6}, - [120] = {.lex_state = 39, .external_lex_state = 6}, - [121] = {.lex_state = 39, .external_lex_state = 2}, - [122] = {.lex_state = 39, .external_lex_state = 5}, - [123] = {.lex_state = 39, .external_lex_state = 5}, + [119] = {.lex_state = 39, .external_lex_state = 5}, + [120] = {.lex_state = 39, .external_lex_state = 5}, + [121] = {.lex_state = 39, .external_lex_state = 5}, + [122] = {.lex_state = 39, .external_lex_state = 6}, + [123] = {.lex_state = 39, .external_lex_state = 6}, [124] = {.lex_state = 39, .external_lex_state = 6}, - [125] = {.lex_state = 39, .external_lex_state = 3}, + [125] = {.lex_state = 39, .external_lex_state = 6}, [126] = {.lex_state = 39, .external_lex_state = 5}, [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 = 5}, - [132] = {.lex_state = 39, .external_lex_state = 6}, - [133] = {.lex_state = 39, .external_lex_state = 6}, - [134] = {.lex_state = 39, .external_lex_state = 6}, + [128] = {.lex_state = 39, .external_lex_state = 6}, + [129] = {.lex_state = 39, .external_lex_state = 6}, + [130] = {.lex_state = 39, .external_lex_state = 5}, + [131] = {.lex_state = 39, .external_lex_state = 6}, + [132] = {.lex_state = 39, .external_lex_state = 5}, + [133] = {.lex_state = 39, .external_lex_state = 5}, + [134] = {.lex_state = 39, .external_lex_state = 5}, [135] = {.lex_state = 39, .external_lex_state = 5}, - [136] = {.lex_state = 39, .external_lex_state = 2}, - [137] = {.lex_state = 39, .external_lex_state = 5}, + [136] = {.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}, - [142] = {.lex_state = 39, .external_lex_state = 6}, - [143] = {.lex_state = 39, .external_lex_state = 3}, - [144] = {.lex_state = 39, .external_lex_state = 3}, - [145] = {.lex_state = 39, .external_lex_state = 2}, - [146] = {.lex_state = 39, .external_lex_state = 6}, + [140] = {.lex_state = 39, .external_lex_state = 6}, + [141] = {.lex_state = 39, .external_lex_state = 5}, + [142] = {.lex_state = 39, .external_lex_state = 5}, + [143] = {.lex_state = 39, .external_lex_state = 5}, + [144] = {.lex_state = 39, .external_lex_state = 5}, + [145] = {.lex_state = 39, .external_lex_state = 5}, + [146] = {.lex_state = 39, .external_lex_state = 5}, [147] = {.lex_state = 39, .external_lex_state = 5}, [148] = {.lex_state = 39, .external_lex_state = 5}, [149] = {.lex_state = 39, .external_lex_state = 5}, [150] = {.lex_state = 39, .external_lex_state = 6}, - [151] = {.lex_state = 39, .external_lex_state = 7}, - [152] = {.lex_state = 39, .external_lex_state = 7}, + [151] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 7}, + [155] = {.lex_state = 39, .external_lex_state = 6}, [156] = {.lex_state = 39, .external_lex_state = 6}, - [157] = {.lex_state = 39, .external_lex_state = 6}, + [157] = {.lex_state = 39, .external_lex_state = 7}, [158] = {.lex_state = 39, .external_lex_state = 6}, [159] = {.lex_state = 39, .external_lex_state = 6}, - [160] = {.lex_state = 39, .external_lex_state = 6}, + [160] = {.lex_state = 39, .external_lex_state = 2}, [161] = {.lex_state = 39, .external_lex_state = 6}, [162] = {.lex_state = 39, .external_lex_state = 7}, [163] = {.lex_state = 39, .external_lex_state = 6}, - [164] = {.lex_state = 39, .external_lex_state = 7}, + [164] = {.lex_state = 39, .external_lex_state = 6}, [165] = {.lex_state = 39, .external_lex_state = 6}, [166] = {.lex_state = 39, .external_lex_state = 7}, [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 = 6}, - [171] = {.lex_state = 39, .external_lex_state = 6}, - [172] = {.lex_state = 39, .external_lex_state = 7}, + [171] = {.lex_state = 39, .external_lex_state = 7}, + [172] = {.lex_state = 39, .external_lex_state = 6}, [173] = {.lex_state = 39, .external_lex_state = 6}, - [174] = {.lex_state = 39, .external_lex_state = 6}, + [174] = {.lex_state = 39, .external_lex_state = 7}, [175] = {.lex_state = 39, .external_lex_state = 6}, [176] = {.lex_state = 39, .external_lex_state = 6}, - [177] = {.lex_state = 39, .external_lex_state = 6}, - [178] = {.lex_state = 39, .external_lex_state = 6}, - [179] = {.lex_state = 39, .external_lex_state = 6}, - [180] = {.lex_state = 39, .external_lex_state = 6}, + [177] = {.lex_state = 39, .external_lex_state = 7}, + [178] = {.lex_state = 39, .external_lex_state = 2}, + [179] = {.lex_state = 39, .external_lex_state = 7}, + [180] = {.lex_state = 39, .external_lex_state = 7}, [181] = {.lex_state = 39, .external_lex_state = 6}, - [182] = {.lex_state = 39, .external_lex_state = 6}, + [182] = {.lex_state = 39, .external_lex_state = 7}, [183] = {.lex_state = 39, .external_lex_state = 6}, - [184] = {.lex_state = 39, .external_lex_state = 2}, - [185] = {.lex_state = 39, .external_lex_state = 7}, + [184] = {.lex_state = 39, .external_lex_state = 6}, + [185] = {.lex_state = 39, .external_lex_state = 3}, [186] = {.lex_state = 39, .external_lex_state = 6}, - [187] = {.lex_state = 39, .external_lex_state = 7}, - [188] = {.lex_state = 39, .external_lex_state = 6}, - [189] = {.lex_state = 20, .external_lex_state = 2}, - [190] = {.lex_state = 39, .external_lex_state = 2}, - [191] = {.lex_state = 20, .external_lex_state = 2}, - [192] = {.lex_state = 20, .external_lex_state = 2}, - [193] = {.lex_state = 20, .external_lex_state = 2}, - [194] = {.lex_state = 20, .external_lex_state = 2}, - [195] = {.lex_state = 20, .external_lex_state = 2}, + [187] = {.lex_state = 39, .external_lex_state = 3}, + [188] = {.lex_state = 39, .external_lex_state = 3}, + [189] = {.lex_state = 39, .external_lex_state = 6}, + [190] = {.lex_state = 39, .external_lex_state = 6}, + [191] = {.lex_state = 39, .external_lex_state = 6}, + [192] = {.lex_state = 39, .external_lex_state = 6}, + [193] = {.lex_state = 39, .external_lex_state = 2}, + [194] = {.lex_state = 39, .external_lex_state = 6}, + [195] = {.lex_state = 39, .external_lex_state = 7}, [196] = {.lex_state = 20, .external_lex_state = 2}, - [197] = {.lex_state = 20, .external_lex_state = 2}, + [197] = {.lex_state = 39, .external_lex_state = 7}, [198] = {.lex_state = 20, .external_lex_state = 2}, - [199] = {.lex_state = 39, .external_lex_state = 7}, - [200] = {.lex_state = 20, .external_lex_state = 2}, + [199] = {.lex_state = 39, .external_lex_state = 2}, + [200] = {.lex_state = 39, .external_lex_state = 7}, [201] = {.lex_state = 20, .external_lex_state = 2}, - [202] = {.lex_state = 20, .external_lex_state = 2}, + [202] = {.lex_state = 39, .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}, @@ -8077,69 +8118,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [211] = {.lex_state = 39, .external_lex_state = 7}, [212] = {.lex_state = 20, .external_lex_state = 2}, - [213] = {.lex_state = 20, .external_lex_state = 2}, - [214] = {.lex_state = 39, .external_lex_state = 2}, + [213] = {.lex_state = 39, .external_lex_state = 2}, + [214] = {.lex_state = 20, .external_lex_state = 2}, [215] = {.lex_state = 20, .external_lex_state = 2}, - [216] = {.lex_state = 39, .external_lex_state = 6}, + [216] = {.lex_state = 20, .external_lex_state = 2}, [217] = {.lex_state = 20, .external_lex_state = 2}, - [218] = {.lex_state = 20, .external_lex_state = 2}, - [219] = {.lex_state = 39, .external_lex_state = 7}, + [218] = {.lex_state = 39, .external_lex_state = 7}, + [219] = {.lex_state = 20, .external_lex_state = 2}, [220] = {.lex_state = 20, .external_lex_state = 2}, [221] = {.lex_state = 20, .external_lex_state = 2}, [222] = {.lex_state = 20, .external_lex_state = 2}, [223] = {.lex_state = 39, .external_lex_state = 7}, - [224] = {.lex_state = 20, .external_lex_state = 2}, - [225] = {.lex_state = 20, .external_lex_state = 2}, + [224] = {.lex_state = 39, .external_lex_state = 2}, + [225] = {.lex_state = 39, .external_lex_state = 6}, [226] = {.lex_state = 20, .external_lex_state = 2}, [227] = {.lex_state = 20, .external_lex_state = 2}, - [228] = {.lex_state = 39, .external_lex_state = 7}, + [228] = {.lex_state = 39, .external_lex_state = 2}, [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}, + [233] = {.lex_state = 39, .external_lex_state = 2}, [234] = {.lex_state = 20, .external_lex_state = 2}, [235] = {.lex_state = 20, .external_lex_state = 2}, - [236] = {.lex_state = 20, .external_lex_state = 2}, + [236] = {.lex_state = 39, .external_lex_state = 7}, [237] = {.lex_state = 20, .external_lex_state = 2}, - [238] = {.lex_state = 39, .external_lex_state = 2}, - [239] = {.lex_state = 39, .external_lex_state = 7}, - [240] = {.lex_state = 20, .external_lex_state = 2}, + [238] = {.lex_state = 20, .external_lex_state = 2}, + [239] = {.lex_state = 20, .external_lex_state = 2}, + [240] = {.lex_state = 39, .external_lex_state = 7}, [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 = 6}, - [248] = {.lex_state = 39, .external_lex_state = 2}, - [249] = {.lex_state = 39, .external_lex_state = 2}, - [250] = {.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 = 20, .external_lex_state = 2}, - [252] = {.lex_state = 39, .external_lex_state = 7}, + [252] = {.lex_state = 39, .external_lex_state = 2}, [253] = {.lex_state = 39, .external_lex_state = 2}, - [254] = {.lex_state = 39, .external_lex_state = 2}, + [254] = {.lex_state = 39, .external_lex_state = 7}, [255] = {.lex_state = 20, .external_lex_state = 2}, - [256] = {.lex_state = 39, .external_lex_state = 2}, - [257] = {.lex_state = 20, .external_lex_state = 2}, + [256] = {.lex_state = 20, .external_lex_state = 2}, + [257] = {.lex_state = 39, .external_lex_state = 6}, [258] = {.lex_state = 20, .external_lex_state = 2}, - [259] = {.lex_state = 20, .external_lex_state = 2}, - [260] = {.lex_state = 20, .external_lex_state = 2}, - [261] = {.lex_state = 39, .external_lex_state = 7}, + [259] = {.lex_state = 39, .external_lex_state = 7}, + [260] = {.lex_state = 39, .external_lex_state = 7}, + [261] = {.lex_state = 20, .external_lex_state = 2}, [262] = {.lex_state = 20, .external_lex_state = 2}, - [263] = {.lex_state = 20, .external_lex_state = 2}, + [263] = {.lex_state = 39, .external_lex_state = 7}, [264] = {.lex_state = 20, .external_lex_state = 2}, - [265] = {.lex_state = 20, .external_lex_state = 2}, + [265] = {.lex_state = 39, .external_lex_state = 2}, [266] = {.lex_state = 20, .external_lex_state = 2}, [267] = {.lex_state = 20, .external_lex_state = 2}, - [268] = {.lex_state = 20, .external_lex_state = 2}, + [268] = {.lex_state = 39, .external_lex_state = 2}, [269] = {.lex_state = 20, .external_lex_state = 2}, [270] = {.lex_state = 20, .external_lex_state = 2}, [271] = {.lex_state = 20, .external_lex_state = 2}, [272] = {.lex_state = 20, .external_lex_state = 2}, - [273] = {.lex_state = 20, .external_lex_state = 2}, + [273] = {.lex_state = 39, .external_lex_state = 7}, [274] = {.lex_state = 20, .external_lex_state = 2}, [275] = {.lex_state = 20, .external_lex_state = 2}, [276] = {.lex_state = 20, .external_lex_state = 2}, @@ -8148,40 +8189,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [282] = {.lex_state = 39, .external_lex_state = 7}, [283] = {.lex_state = 20, .external_lex_state = 2}, [284] = {.lex_state = 20, .external_lex_state = 2}, - [285] = {.lex_state = 20, .external_lex_state = 2}, + [285] = {.lex_state = 39, .external_lex_state = 7}, [286] = {.lex_state = 20, .external_lex_state = 2}, - [287] = {.lex_state = 39, .external_lex_state = 7}, + [287] = {.lex_state = 20, .external_lex_state = 2}, [288] = {.lex_state = 20, .external_lex_state = 2}, - [289] = {.lex_state = 20, .external_lex_state = 2}, + [289] = {.lex_state = 39, .external_lex_state = 2}, [290] = {.lex_state = 20, .external_lex_state = 2}, [291] = {.lex_state = 20, .external_lex_state = 2}, - [292] = {.lex_state = 39, .external_lex_state = 7}, - [293] = {.lex_state = 39, .external_lex_state = 6}, + [292] = {.lex_state = 20, .external_lex_state = 2}, + [293] = {.lex_state = 20, .external_lex_state = 2}, [294] = {.lex_state = 39, .external_lex_state = 7}, [295] = {.lex_state = 20, .external_lex_state = 2}, - [296] = {.lex_state = 20, .external_lex_state = 2}, - [297] = {.lex_state = 39, .external_lex_state = 7}, + [296] = {.lex_state = 39, .external_lex_state = 7}, + [297] = {.lex_state = 20, .external_lex_state = 2}, [298] = {.lex_state = 20, .external_lex_state = 2}, [299] = {.lex_state = 20, .external_lex_state = 2}, - [300] = {.lex_state = 39, .external_lex_state = 7}, + [300] = {.lex_state = 39, .external_lex_state = 6}, [301] = {.lex_state = 20, .external_lex_state = 2}, - [302] = {.lex_state = 39, .external_lex_state = 7}, - [303] = {.lex_state = 20, .external_lex_state = 2}, + [302] = {.lex_state = 20, .external_lex_state = 2}, + [303] = {.lex_state = 39, .external_lex_state = 7}, [304] = {.lex_state = 20, .external_lex_state = 2}, - [305] = {.lex_state = 39, .external_lex_state = 7}, + [305] = {.lex_state = 20, .external_lex_state = 2}, [306] = {.lex_state = 20, .external_lex_state = 2}, - [307] = {.lex_state = 39, .external_lex_state = 7}, + [307] = {.lex_state = 20, .external_lex_state = 2}, [308] = {.lex_state = 20, .external_lex_state = 2}, - [309] = {.lex_state = 39, .external_lex_state = 7}, - [310] = {.lex_state = 39, .external_lex_state = 3}, - [311] = {.lex_state = 39, .external_lex_state = 3}, - [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}, + [309] = {.lex_state = 20, .external_lex_state = 2}, + [310] = {.lex_state = 20, .external_lex_state = 2}, + [311] = {.lex_state = 20, .external_lex_state = 2}, + [312] = {.lex_state = 20, .external_lex_state = 2}, + [313] = {.lex_state = 20, .external_lex_state = 2}, + [314] = {.lex_state = 20, .external_lex_state = 2}, + [315] = {.lex_state = 20, .external_lex_state = 2}, [316] = {.lex_state = 39, .external_lex_state = 2}, [317] = {.lex_state = 39, .external_lex_state = 2}, [318] = {.lex_state = 39, .external_lex_state = 2}, @@ -8193,74 +8234,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [324] = {.lex_state = 39, .external_lex_state = 2}, [325] = {.lex_state = 39, .external_lex_state = 2}, [326] = {.lex_state = 39, .external_lex_state = 2}, - [327] = {.lex_state = 39, .external_lex_state = 3}, + [327] = {.lex_state = 39, .external_lex_state = 2}, [328] = {.lex_state = 39, .external_lex_state = 2}, [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 = 2}, - [335] = {.lex_state = 39, .external_lex_state = 3}, - [336] = {.lex_state = 39, .external_lex_state = 3}, + [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 = 2}, - [338] = {.lex_state = 39, .external_lex_state = 3}, + [338] = {.lex_state = 39, .external_lex_state = 2}, [339] = {.lex_state = 39, .external_lex_state = 2}, [340] = {.lex_state = 39, .external_lex_state = 3}, [341] = {.lex_state = 39, .external_lex_state = 2}, - [342] = {.lex_state = 39, .external_lex_state = 3}, - [343] = {.lex_state = 39, .external_lex_state = 3}, + [342] = {.lex_state = 39, .external_lex_state = 2}, + [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}, [347] = {.lex_state = 39, .external_lex_state = 2}, [348] = {.lex_state = 39, .external_lex_state = 2}, - [349] = {.lex_state = 39, .external_lex_state = 3}, - [350] = {.lex_state = 39, .external_lex_state = 3}, - [351] = {.lex_state = 39, .external_lex_state = 3}, + [349] = {.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 = 39, .external_lex_state = 2}, [353] = {.lex_state = 39, .external_lex_state = 2}, - [354] = {.lex_state = 39, .external_lex_state = 3}, - [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 = 3}, + [354] = {.lex_state = 39, .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 = 2}, [359] = {.lex_state = 39, .external_lex_state = 2}, - [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}, + [360] = {.lex_state = 39, .external_lex_state = 2}, + [361] = {.lex_state = 39, .external_lex_state = 2}, + [362] = {.lex_state = 39, .external_lex_state = 2}, + [363] = {.lex_state = 39, .external_lex_state = 2}, + [364] = {.lex_state = 39, .external_lex_state = 2}, [365] = {.lex_state = 39, .external_lex_state = 2}, - [366] = {.lex_state = 39, .external_lex_state = 3}, - [367] = {.lex_state = 39, .external_lex_state = 3}, - [368] = {.lex_state = 39, .external_lex_state = 3}, - [369] = {.lex_state = 39, .external_lex_state = 3}, + [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 = 2}, [370] = {.lex_state = 39, .external_lex_state = 3}, - [371] = {.lex_state = 39, .external_lex_state = 3}, - [372] = {.lex_state = 39, .external_lex_state = 3}, - [373] = {.lex_state = 39, .external_lex_state = 3}, - [374] = {.lex_state = 39, .external_lex_state = 3}, - [375] = {.lex_state = 39, .external_lex_state = 3}, - [376] = {.lex_state = 39, .external_lex_state = 3}, + [371] = {.lex_state = 39, .external_lex_state = 2}, + [372] = {.lex_state = 39, .external_lex_state = 2}, + [373] = {.lex_state = 39, .external_lex_state = 2}, + [374] = {.lex_state = 39, .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 = 2}, [378] = {.lex_state = 39, .external_lex_state = 2}, [379] = {.lex_state = 39, .external_lex_state = 2}, - [380] = {.lex_state = 39, .external_lex_state = 3}, - [381] = {.lex_state = 39, .external_lex_state = 3}, + [380] = {.lex_state = 39, .external_lex_state = 2}, + [381] = {.lex_state = 39, .external_lex_state = 2}, [382] = {.lex_state = 39, .external_lex_state = 2}, [383] = {.lex_state = 39, .external_lex_state = 2}, - [384] = {.lex_state = 39, .external_lex_state = 3}, + [384] = {.lex_state = 39, .external_lex_state = 2}, [385] = {.lex_state = 39, .external_lex_state = 2}, - [386] = {.lex_state = 39, .external_lex_state = 3}, - [387] = {.lex_state = 39, .external_lex_state = 3}, + [386] = {.lex_state = 39, .external_lex_state = 2}, + [387] = {.lex_state = 39, .external_lex_state = 2}, [388] = {.lex_state = 39, .external_lex_state = 2}, [389] = {.lex_state = 39, .external_lex_state = 2}, [390] = {.lex_state = 39, .external_lex_state = 2}, [391] = {.lex_state = 39, .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}, + [392] = {.lex_state = 39, .external_lex_state = 2}, + [393] = {.lex_state = 39, .external_lex_state = 2}, + [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}, @@ -8405,12 +8446,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [536] = {.lex_state = 39, .external_lex_state = 2}, [537] = {.lex_state = 39, .external_lex_state = 2}, [538] = {.lex_state = 39, .external_lex_state = 2}, - [539] = {.lex_state = 39, .external_lex_state = 2}, + [539] = {.lex_state = 39, .external_lex_state = 3}, [540] = {.lex_state = 39, .external_lex_state = 2}, - [541] = {.lex_state = 39, .external_lex_state = 2}, + [541] = {.lex_state = 39, .external_lex_state = 3}, [542] = {.lex_state = 39, .external_lex_state = 2}, [543] = {.lex_state = 39, .external_lex_state = 2}, - [544] = {.lex_state = 39, .external_lex_state = 2}, + [544] = {.lex_state = 39, .external_lex_state = 3}, [545] = {.lex_state = 39, .external_lex_state = 2}, [546] = {.lex_state = 39, .external_lex_state = 2}, [547] = {.lex_state = 39, .external_lex_state = 2}, @@ -8466,10 +8507,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [597] = {.lex_state = 39, .external_lex_state = 2}, [598] = {.lex_state = 39, .external_lex_state = 2}, [599] = {.lex_state = 39, .external_lex_state = 2}, - [600] = {.lex_state = 39, .external_lex_state = 2}, + [600] = {.lex_state = 39, .external_lex_state = 3}, [601] = {.lex_state = 39, .external_lex_state = 2}, - [602] = {.lex_state = 39, .external_lex_state = 2}, - [603] = {.lex_state = 39, .external_lex_state = 2}, + [602] = {.lex_state = 39, .external_lex_state = 3}, + [603] = {.lex_state = 39, .external_lex_state = 3}, [604] = {.lex_state = 39, .external_lex_state = 2}, [605] = {.lex_state = 39, .external_lex_state = 2}, [606] = {.lex_state = 39, .external_lex_state = 2}, @@ -8496,9 +8537,9 @@ 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 = 2}, + [630] = {.lex_state = 39, .external_lex_state = 3}, [631] = {.lex_state = 39, .external_lex_state = 2}, - [632] = {.lex_state = 39, .external_lex_state = 2}, + [632] = {.lex_state = 39, .external_lex_state = 3}, [633] = {.lex_state = 39, .external_lex_state = 2}, [634] = {.lex_state = 39, .external_lex_state = 2}, [635] = {.lex_state = 39, .external_lex_state = 2}, @@ -8506,33 +8547,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [637] = {.lex_state = 39, .external_lex_state = 2}, [638] = {.lex_state = 39, .external_lex_state = 2}, [639] = {.lex_state = 39, .external_lex_state = 2}, - [640] = {.lex_state = 39, .external_lex_state = 3}, + [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 = 3}, + [644] = {.lex_state = 39, .external_lex_state = 2}, [645] = {.lex_state = 39, .external_lex_state = 2}, [646] = {.lex_state = 39, .external_lex_state = 2}, - [647] = {.lex_state = 39, .external_lex_state = 3}, + [647] = {.lex_state = 39, .external_lex_state = 2}, [648] = {.lex_state = 39, .external_lex_state = 3}, [649] = {.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 = 3}, + [652] = {.lex_state = 39, .external_lex_state = 2}, [653] = {.lex_state = 39, .external_lex_state = 2}, - [654] = {.lex_state = 39, .external_lex_state = 2}, + [654] = {.lex_state = 39, .external_lex_state = 3}, [655] = {.lex_state = 39, .external_lex_state = 2}, - [656] = {.lex_state = 39, .external_lex_state = 2}, - [657] = {.lex_state = 39, .external_lex_state = 2}, - [658] = {.lex_state = 39, .external_lex_state = 2}, + [656] = {.lex_state = 39, .external_lex_state = 3}, + [657] = {.lex_state = 39, .external_lex_state = 3}, + [658] = {.lex_state = 39, .external_lex_state = 3}, [659] = {.lex_state = 39, .external_lex_state = 2}, - [660] = {.lex_state = 39, .external_lex_state = 2}, - [661] = {.lex_state = 39, .external_lex_state = 2}, - [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}, - [666] = {.lex_state = 39, .external_lex_state = 2}, + [660] = {.lex_state = 39, .external_lex_state = 3}, + [661] = {.lex_state = 39, .external_lex_state = 3}, + [662] = {.lex_state = 39, .external_lex_state = 3}, + [663] = {.lex_state = 39, .external_lex_state = 3}, + [664] = {.lex_state = 39, .external_lex_state = 3}, + [665] = {.lex_state = 39, .external_lex_state = 3}, + [666] = {.lex_state = 39, .external_lex_state = 3}, [667] = {.lex_state = 39, .external_lex_state = 2}, [668] = {.lex_state = 39, .external_lex_state = 2}, [669] = {.lex_state = 39, .external_lex_state = 2}, @@ -8541,8 +8582,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 2}, + [675] = {.lex_state = 39, .external_lex_state = 3}, + [676] = {.lex_state = 39, .external_lex_state = 3}, [677] = {.lex_state = 39, .external_lex_state = 2}, [678] = {.lex_state = 39, .external_lex_state = 2}, [679] = {.lex_state = 39, .external_lex_state = 2}, @@ -8560,8 +8601,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [691] = {.lex_state = 39, .external_lex_state = 2}, [692] = {.lex_state = 39, .external_lex_state = 2}, [693] = {.lex_state = 39, .external_lex_state = 2}, - [694] = {.lex_state = 39, .external_lex_state = 3}, - [695] = {.lex_state = 39, .external_lex_state = 3}, + [694] = {.lex_state = 39, .external_lex_state = 2}, + [695] = {.lex_state = 39, .external_lex_state = 2}, [696] = {.lex_state = 39, .external_lex_state = 2}, [697] = {.lex_state = 39, .external_lex_state = 2}, [698] = {.lex_state = 39, .external_lex_state = 2}, @@ -8570,47 +8611,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [701] = {.lex_state = 39, .external_lex_state = 2}, [702] = {.lex_state = 39, .external_lex_state = 2}, [703] = {.lex_state = 39, .external_lex_state = 2}, - [704] = {.lex_state = 39, .external_lex_state = 2}, + [704] = {.lex_state = 39, .external_lex_state = 3}, [705] = {.lex_state = 39, .external_lex_state = 2}, [706] = {.lex_state = 39, .external_lex_state = 2}, [707] = {.lex_state = 39, .external_lex_state = 2}, [708] = {.lex_state = 39, .external_lex_state = 2}, [709] = {.lex_state = 39, .external_lex_state = 2}, [710] = {.lex_state = 39, .external_lex_state = 2}, - [711] = {.lex_state = 39, .external_lex_state = 2}, + [711] = {.lex_state = 39, .external_lex_state = 3}, [712] = {.lex_state = 39, .external_lex_state = 2}, [713] = {.lex_state = 39, .external_lex_state = 2}, [714] = {.lex_state = 39, .external_lex_state = 3}, [715] = {.lex_state = 39, .external_lex_state = 2}, - [716] = {.lex_state = 39, .external_lex_state = 3}, + [716] = {.lex_state = 39, .external_lex_state = 2}, [717] = {.lex_state = 39, .external_lex_state = 2}, [718] = {.lex_state = 39, .external_lex_state = 2}, [719] = {.lex_state = 39, .external_lex_state = 2}, - [720] = {.lex_state = 39, .external_lex_state = 2}, + [720] = {.lex_state = 39, .external_lex_state = 3}, [721] = {.lex_state = 39, .external_lex_state = 2}, - [722] = {.lex_state = 39, .external_lex_state = 2}, + [722] = {.lex_state = 39, .external_lex_state = 3}, [723] = {.lex_state = 39, .external_lex_state = 2}, [724] = {.lex_state = 39, .external_lex_state = 2}, [725] = {.lex_state = 39, .external_lex_state = 2}, [726] = {.lex_state = 39, .external_lex_state = 2}, - [727] = {.lex_state = 39, .external_lex_state = 2}, - [728] = {.lex_state = 39, .external_lex_state = 3}, + [727] = {.lex_state = 39, .external_lex_state = 3}, + [728] = {.lex_state = 39, .external_lex_state = 2}, [729] = {.lex_state = 39, .external_lex_state = 2}, [730] = {.lex_state = 39, .external_lex_state = 2}, [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}, - [735] = {.lex_state = 39, .external_lex_state = 2}, + [735] = {.lex_state = 39, .external_lex_state = 3}, [736] = {.lex_state = 39, .external_lex_state = 2}, [737] = {.lex_state = 39, .external_lex_state = 2}, [738] = {.lex_state = 39, .external_lex_state = 2}, [739] = {.lex_state = 39, .external_lex_state = 2}, [740] = {.lex_state = 39, .external_lex_state = 2}, [741] = {.lex_state = 39, .external_lex_state = 2}, - [742] = {.lex_state = 39, .external_lex_state = 3}, + [742] = {.lex_state = 39, .external_lex_state = 2}, [743] = {.lex_state = 39, .external_lex_state = 2}, - [744] = {.lex_state = 39, .external_lex_state = 2}, + [744] = {.lex_state = 39, .external_lex_state = 3}, [745] = {.lex_state = 39, .external_lex_state = 2}, [746] = {.lex_state = 39, .external_lex_state = 2}, [747] = {.lex_state = 39, .external_lex_state = 2}, @@ -8626,8 +8667,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [757] = {.lex_state = 39, .external_lex_state = 2}, [758] = {.lex_state = 39, .external_lex_state = 2}, [759] = {.lex_state = 39, .external_lex_state = 2}, - [760] = {.lex_state = 39, .external_lex_state = 3}, - [761] = {.lex_state = 39, .external_lex_state = 3}, + [760] = {.lex_state = 39, .external_lex_state = 2}, + [761] = {.lex_state = 39, .external_lex_state = 2}, [762] = {.lex_state = 39, .external_lex_state = 2}, [763] = {.lex_state = 39, .external_lex_state = 2}, [764] = {.lex_state = 39, .external_lex_state = 2}, @@ -8635,7 +8676,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [766] = {.lex_state = 39, .external_lex_state = 2}, [767] = {.lex_state = 39, .external_lex_state = 2}, [768] = {.lex_state = 39, .external_lex_state = 2}, - [769] = {.lex_state = 39, .external_lex_state = 3}, + [769] = {.lex_state = 39, .external_lex_state = 2}, [770] = {.lex_state = 39, .external_lex_state = 2}, [771] = {.lex_state = 39, .external_lex_state = 2}, [772] = {.lex_state = 39, .external_lex_state = 2}, @@ -8646,25 +8687,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [777] = {.lex_state = 39, .external_lex_state = 2}, [778] = {.lex_state = 39, .external_lex_state = 2}, [779] = {.lex_state = 39, .external_lex_state = 2}, - [780] = {.lex_state = 39, .external_lex_state = 2}, + [780] = {.lex_state = 39, .external_lex_state = 3}, [781] = {.lex_state = 39, .external_lex_state = 2}, [782] = {.lex_state = 39, .external_lex_state = 2}, [783] = {.lex_state = 39, .external_lex_state = 2}, [784] = {.lex_state = 39, .external_lex_state = 2}, - [785] = {.lex_state = 39, .external_lex_state = 2}, + [785] = {.lex_state = 39, .external_lex_state = 3}, [786] = {.lex_state = 39, .external_lex_state = 2}, [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}, + [790] = {.lex_state = 39, .external_lex_state = 3}, [791] = {.lex_state = 39, .external_lex_state = 2}, [792] = {.lex_state = 39, .external_lex_state = 2}, - [793] = {.lex_state = 39, .external_lex_state = 3}, + [793] = {.lex_state = 39, .external_lex_state = 2}, [794] = {.lex_state = 39, .external_lex_state = 2}, [795] = {.lex_state = 39, .external_lex_state = 2}, [796] = {.lex_state = 39, .external_lex_state = 2}, [797] = {.lex_state = 39, .external_lex_state = 2}, - [798] = {.lex_state = 39, .external_lex_state = 2}, + [798] = {.lex_state = 39, .external_lex_state = 3}, [799] = {.lex_state = 39, .external_lex_state = 2}, [800] = {.lex_state = 39, .external_lex_state = 2}, [801] = {.lex_state = 39, .external_lex_state = 2}, @@ -8676,7 +8717,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [807] = {.lex_state = 39, .external_lex_state = 2}, [808] = {.lex_state = 39, .external_lex_state = 2}, [809] = {.lex_state = 39, .external_lex_state = 2}, - [810] = {.lex_state = 39, .external_lex_state = 3}, + [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}, @@ -8685,7 +8726,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, @@ -8698,7 +8739,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [829] = {.lex_state = 39, .external_lex_state = 2}, [830] = {.lex_state = 39, .external_lex_state = 2}, [831] = {.lex_state = 39, .external_lex_state = 2}, - [832] = {.lex_state = 39, .external_lex_state = 2}, + [832] = {.lex_state = 39, .external_lex_state = 3}, [833] = {.lex_state = 39, .external_lex_state = 2}, [834] = {.lex_state = 39, .external_lex_state = 2}, [835] = {.lex_state = 39, .external_lex_state = 2}, @@ -8714,7 +8755,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [845] = {.lex_state = 39, .external_lex_state = 2}, [846] = {.lex_state = 39, .external_lex_state = 2}, [847] = {.lex_state = 39, .external_lex_state = 2}, - [848] = {.lex_state = 39, .external_lex_state = 2}, + [848] = {.lex_state = 39, .external_lex_state = 3}, [849] = {.lex_state = 39, .external_lex_state = 2}, [850] = {.lex_state = 39, .external_lex_state = 2}, [851] = {.lex_state = 39, .external_lex_state = 2}, @@ -8723,129 +8764,129 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [854] = {.lex_state = 39, .external_lex_state = 2}, [855] = {.lex_state = 39, .external_lex_state = 2}, [856] = {.lex_state = 39, .external_lex_state = 2}, - [857] = {.lex_state = 39, .external_lex_state = 2}, + [857] = {.lex_state = 39, .external_lex_state = 3}, [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}, + [861] = {.lex_state = 39, .external_lex_state = 3}, [862] = {.lex_state = 39, .external_lex_state = 2}, [863] = {.lex_state = 39, .external_lex_state = 2}, [864] = {.lex_state = 39, .external_lex_state = 3}, - [865] = {.lex_state = 39, .external_lex_state = 3}, - [866] = {.lex_state = 39, .external_lex_state = 3}, + [865] = {.lex_state = 39, .external_lex_state = 2}, + [866] = {.lex_state = 39, .external_lex_state = 2}, [867] = {.lex_state = 39, .external_lex_state = 3}, [868] = {.lex_state = 39, .external_lex_state = 2}, - [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}, + [869] = {.lex_state = 39, .external_lex_state = 3}, + [870] = {.lex_state = 39, .external_lex_state = 3}, + [871] = {.lex_state = 39, .external_lex_state = 3}, + [872] = {.lex_state = 39, .external_lex_state = 3}, [873] = {.lex_state = 39, .external_lex_state = 2}, [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}, + [877] = {.lex_state = 39, .external_lex_state = 3}, [878] = {.lex_state = 39, .external_lex_state = 2}, - [879] = {.lex_state = 39, .external_lex_state = 2}, - [880] = {.lex_state = 39, .external_lex_state = 2}, + [879] = {.lex_state = 39, .external_lex_state = 3}, + [880] = {.lex_state = 39, .external_lex_state = 3}, [881] = {.lex_state = 39, .external_lex_state = 2}, - [882] = {.lex_state = 39, .external_lex_state = 2}, + [882] = {.lex_state = 39, .external_lex_state = 3}, [883] = {.lex_state = 39, .external_lex_state = 2}, [884] = {.lex_state = 39, .external_lex_state = 2}, - [885] = {.lex_state = 39, .external_lex_state = 2}, + [885] = {.lex_state = 39, .external_lex_state = 3}, [886] = {.lex_state = 39, .external_lex_state = 2}, - [887] = {.lex_state = 39, .external_lex_state = 2}, - [888] = {.lex_state = 39, .external_lex_state = 2}, - [889] = {.lex_state = 39, .external_lex_state = 2}, - [890] = {.lex_state = 39, .external_lex_state = 2}, - [891] = {.lex_state = 39, .external_lex_state = 3}, + [887] = {.lex_state = 39, .external_lex_state = 3}, + [888] = {.lex_state = 39, .external_lex_state = 3}, + [889] = {.lex_state = 39, .external_lex_state = 3}, + [890] = {.lex_state = 39, .external_lex_state = 3}, + [891] = {.lex_state = 39, .external_lex_state = 2}, [892] = {.lex_state = 39, .external_lex_state = 2}, [893] = {.lex_state = 39, .external_lex_state = 2}, - [894] = {.lex_state = 39, .external_lex_state = 3}, - [895] = {.lex_state = 39, .external_lex_state = 2}, - [896] = {.lex_state = 39, .external_lex_state = 3}, + [894] = {.lex_state = 39, .external_lex_state = 2}, + [895] = {.lex_state = 39, .external_lex_state = 3}, + [896] = {.lex_state = 39, .external_lex_state = 2}, [897] = {.lex_state = 39, .external_lex_state = 3}, - [898] = {.lex_state = 39, .external_lex_state = 3}, + [898] = {.lex_state = 39, .external_lex_state = 2}, [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 = 3}, - [903] = {.lex_state = 39, .external_lex_state = 3}, - [904] = {.lex_state = 39, .external_lex_state = 2}, + [903] = {.lex_state = 39, .external_lex_state = 2}, + [904] = {.lex_state = 39, .external_lex_state = 3}, [905] = {.lex_state = 39, .external_lex_state = 2}, [906] = {.lex_state = 39, .external_lex_state = 2}, - [907] = {.lex_state = 39, .external_lex_state = 2}, - [908] = {.lex_state = 39, .external_lex_state = 2}, - [909] = {.lex_state = 39, .external_lex_state = 2}, - [910] = {.lex_state = 39, .external_lex_state = 2}, + [907] = {.lex_state = 39, .external_lex_state = 3}, + [908] = {.lex_state = 39, .external_lex_state = 3}, + [909] = {.lex_state = 39, .external_lex_state = 3}, + [910] = {.lex_state = 39, .external_lex_state = 3}, [911] = {.lex_state = 39, .external_lex_state = 2}, - [912] = {.lex_state = 39, .external_lex_state = 2}, + [912] = {.lex_state = 39, .external_lex_state = 3}, [913] = {.lex_state = 39, .external_lex_state = 2}, - [914] = {.lex_state = 39, .external_lex_state = 3}, + [914] = {.lex_state = 39, .external_lex_state = 2}, [915] = {.lex_state = 39, .external_lex_state = 2}, - [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 = 2}, - [920] = {.lex_state = 39, .external_lex_state = 2}, + [916] = {.lex_state = 39, .external_lex_state = 3}, + [917] = {.lex_state = 39, .external_lex_state = 3}, + [918] = {.lex_state = 39, .external_lex_state = 3}, + [919] = {.lex_state = 39, .external_lex_state = 3}, + [920] = {.lex_state = 39, .external_lex_state = 3}, [921] = {.lex_state = 39, .external_lex_state = 3}, [922] = {.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}, + [923] = {.lex_state = 39, .external_lex_state = 3}, + [924] = {.lex_state = 39, .external_lex_state = 3}, + [925] = {.lex_state = 39, .external_lex_state = 3}, [926] = {.lex_state = 39, .external_lex_state = 3}, [927] = {.lex_state = 39, .external_lex_state = 3}, [928] = {.lex_state = 39, .external_lex_state = 3}, [929] = {.lex_state = 39, .external_lex_state = 2}, [930] = {.lex_state = 39, .external_lex_state = 2}, - [931] = {.lex_state = 39, .external_lex_state = 2}, - [932] = {.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}, + [937] = {.lex_state = 39, .external_lex_state = 2}, + [938] = {.lex_state = 39, .external_lex_state = 2}, [939] = {.lex_state = 39, .external_lex_state = 3}, - [940] = {.lex_state = 39, .external_lex_state = 2}, - [941] = {.lex_state = 39, .external_lex_state = 3}, + [940] = {.lex_state = 39, .external_lex_state = 3}, + [941] = {.lex_state = 39, .external_lex_state = 2}, [942] = {.lex_state = 39, .external_lex_state = 3}, - [943] = {.lex_state = 39, .external_lex_state = 3}, + [943] = {.lex_state = 39, .external_lex_state = 2}, [944] = {.lex_state = 39, .external_lex_state = 3}, [945] = {.lex_state = 39, .external_lex_state = 3}, - [946] = {.lex_state = 39, .external_lex_state = 3}, - [947] = {.lex_state = 39, .external_lex_state = 2}, + [946] = {.lex_state = 39, .external_lex_state = 2}, + [947] = {.lex_state = 39, .external_lex_state = 3}, [948] = {.lex_state = 39, .external_lex_state = 2}, - [949] = {.lex_state = 39, .external_lex_state = 3}, + [949] = {.lex_state = 39, .external_lex_state = 2}, [950] = {.lex_state = 39, .external_lex_state = 3}, - [951] = {.lex_state = 39, .external_lex_state = 3}, - [952] = {.lex_state = 39, .external_lex_state = 3}, - [953] = {.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 = 2}, - [955] = {.lex_state = 39, .external_lex_state = 2}, - [956] = {.lex_state = 39, .external_lex_state = 2}, - [957] = {.lex_state = 39, .external_lex_state = 3}, - [958] = {.lex_state = 39, .external_lex_state = 2}, - [959] = {.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 = 2}, + [958] = {.lex_state = 39, .external_lex_state = 3}, + [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}, + [961] = {.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 = 3}, - [966] = {.lex_state = 39, .external_lex_state = 3}, - [967] = {.lex_state = 39, .external_lex_state = 3}, + [965] = {.lex_state = 39, .external_lex_state = 2}, + [966] = {.lex_state = 39, .external_lex_state = 2}, + [967] = {.lex_state = 39, .external_lex_state = 2}, [968] = {.lex_state = 39, .external_lex_state = 3}, [969] = {.lex_state = 39, .external_lex_state = 3}, [970] = {.lex_state = 39, .external_lex_state = 2}, - [971] = {.lex_state = 39, .external_lex_state = 2}, + [971] = {.lex_state = 39, .external_lex_state = 3}, [972] = {.lex_state = 39, .external_lex_state = 3}, - [973] = {.lex_state = 39, .external_lex_state = 2}, + [973] = {.lex_state = 39, .external_lex_state = 3}, [974] = {.lex_state = 39, .external_lex_state = 3}, [975] = {.lex_state = 39, .external_lex_state = 3}, [976] = {.lex_state = 39, .external_lex_state = 2}, [977] = {.lex_state = 39, .external_lex_state = 2}, [978] = {.lex_state = 39, .external_lex_state = 2}, - [979] = {.lex_state = 39, .external_lex_state = 3}, + [979] = {.lex_state = 39, .external_lex_state = 2}, [980] = {.lex_state = 39, .external_lex_state = 2}, [981] = {.lex_state = 39, .external_lex_state = 3}, [982] = {.lex_state = 39, .external_lex_state = 3}, @@ -8854,31 +8895,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [985] = {.lex_state = 39, .external_lex_state = 2}, [986] = {.lex_state = 39, .external_lex_state = 3}, [987] = {.lex_state = 39, .external_lex_state = 2}, - [988] = {.lex_state = 39, .external_lex_state = 2}, - [989] = {.lex_state = 39, .external_lex_state = 2}, + [988] = {.lex_state = 39, .external_lex_state = 3}, + [989] = {.lex_state = 39, .external_lex_state = 3}, [990] = {.lex_state = 39, .external_lex_state = 2}, - [991] = {.lex_state = 39, .external_lex_state = 2}, - [992] = {.lex_state = 39, .external_lex_state = 3}, + [991] = {.lex_state = 39, .external_lex_state = 3}, + [992] = {.lex_state = 39, .external_lex_state = 2}, [993] = {.lex_state = 39, .external_lex_state = 2}, [994] = {.lex_state = 39, .external_lex_state = 2}, [995] = {.lex_state = 39, .external_lex_state = 2}, - [996] = {.lex_state = 39, .external_lex_state = 3}, + [996] = {.lex_state = 39, .external_lex_state = 2}, [997] = {.lex_state = 39, .external_lex_state = 2}, [998] = {.lex_state = 39, .external_lex_state = 2}, [999] = {.lex_state = 39, .external_lex_state = 2}, - [1000] = {.lex_state = 39, .external_lex_state = 8}, - [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}, + [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 = 3}, + [1008] = {.lex_state = 39, .external_lex_state = 2}, + [1009] = {.lex_state = 39, .external_lex_state = 3}, [1010] = {.lex_state = 39, .external_lex_state = 5}, [1011] = {.lex_state = 39, .external_lex_state = 5}, - [1012] = {.lex_state = 39, .external_lex_state = 5}, + [1012] = {.lex_state = 39, .external_lex_state = 8}, [1013] = {.lex_state = 39, .external_lex_state = 5}, [1014] = {.lex_state = 39, .external_lex_state = 5}, [1015] = {.lex_state = 39, .external_lex_state = 5}, @@ -8902,12 +8943,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1033] = {.lex_state = 39, .external_lex_state = 5}, [1034] = {.lex_state = 39, .external_lex_state = 5}, [1035] = {.lex_state = 39, .external_lex_state = 5}, - [1036] = {.lex_state = 39, .external_lex_state = 5}, + [1036] = {.lex_state = 39, .external_lex_state = 9}, [1037] = {.lex_state = 39, .external_lex_state = 5}, [1038] = {.lex_state = 39, .external_lex_state = 5}, [1039] = {.lex_state = 39, .external_lex_state = 5}, [1040] = {.lex_state = 39, .external_lex_state = 5}, - [1041] = {.lex_state = 39, .external_lex_state = 9}, + [1041] = {.lex_state = 39, .external_lex_state = 5}, [1042] = {.lex_state = 39, .external_lex_state = 5}, [1043] = {.lex_state = 39, .external_lex_state = 5}, [1044] = {.lex_state = 39, .external_lex_state = 5}, @@ -8922,11 +8963,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1053] = {.lex_state = 39, .external_lex_state = 5}, [1054] = {.lex_state = 39, .external_lex_state = 5}, [1055] = {.lex_state = 39, .external_lex_state = 5}, - [1056] = {.lex_state = 39, .external_lex_state = 9}, + [1056] = {.lex_state = 39, .external_lex_state = 5}, [1057] = {.lex_state = 39, .external_lex_state = 5}, [1058] = {.lex_state = 39, .external_lex_state = 5}, [1059] = {.lex_state = 39, .external_lex_state = 5}, - [1060] = {.lex_state = 39, .external_lex_state = 5}, + [1060] = {.lex_state = 39, .external_lex_state = 9}, [1061] = {.lex_state = 39, .external_lex_state = 5}, [1062] = {.lex_state = 39, .external_lex_state = 5}, [1063] = {.lex_state = 39, .external_lex_state = 5}, @@ -8944,1036 +8985,1036 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1075] = {.lex_state = 39, .external_lex_state = 5}, [1076] = {.lex_state = 39, .external_lex_state = 5}, [1077] = {.lex_state = 39, .external_lex_state = 5}, - [1078] = {.lex_state = 39, .external_lex_state = 2}, + [1078] = {.lex_state = 39, .external_lex_state = 5}, [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}, [1084] = {.lex_state = 39, .external_lex_state = 5}, - [1085] = {.lex_state = 39, .external_lex_state = 2}, + [1085] = {.lex_state = 39, .external_lex_state = 5}, [1086] = {.lex_state = 39, .external_lex_state = 5}, [1087] = {.lex_state = 39, .external_lex_state = 5}, [1088] = {.lex_state = 39, .external_lex_state = 5}, - [1089] = {.lex_state = 39, .external_lex_state = 2}, - [1090] = {.lex_state = 39, .external_lex_state = 2}, + [1089] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 5}, [1096] = {.lex_state = 39, .external_lex_state = 5}, - [1097] = {.lex_state = 39, .external_lex_state = 3}, + [1097] = {.lex_state = 39, .external_lex_state = 5}, [1098] = {.lex_state = 39, .external_lex_state = 5}, [1099] = {.lex_state = 39, .external_lex_state = 5}, [1100] = {.lex_state = 39, .external_lex_state = 5}, [1101] = {.lex_state = 39, .external_lex_state = 5}, - [1102] = {.lex_state = 39, .external_lex_state = 3}, + [1102] = {.lex_state = 39, .external_lex_state = 5}, [1103] = {.lex_state = 39, .external_lex_state = 5}, - [1104] = {.lex_state = 39, .external_lex_state = 3}, - [1105] = {.lex_state = 39, .external_lex_state = 5}, + [1104] = {.lex_state = 39, .external_lex_state = 5}, + [1105] = {.lex_state = 39, .external_lex_state = 2}, [1106] = {.lex_state = 39, .external_lex_state = 5}, - [1107] = {.lex_state = 39, .external_lex_state = 5}, - [1108] = {.lex_state = 39, .external_lex_state = 5}, - [1109] = {.lex_state = 39, .external_lex_state = 5}, - [1110] = {.lex_state = 39, .external_lex_state = 5}, + [1107] = {.lex_state = 39, .external_lex_state = 3}, + [1108] = {.lex_state = 39, .external_lex_state = 3}, + [1109] = {.lex_state = 39, .external_lex_state = 3}, + [1110] = {.lex_state = 39, .external_lex_state = 3}, [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 = 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 = 3}, + [1117] = {.lex_state = 39, .external_lex_state = 2}, + [1118] = {.lex_state = 39, .external_lex_state = 5}, [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}, + [1122] = {.lex_state = 39, .external_lex_state = 2}, + [1123] = {.lex_state = 39, .external_lex_state = 2}, [1124] = {.lex_state = 39, .external_lex_state = 5}, [1125] = {.lex_state = 39, .external_lex_state = 5}, [1126] = {.lex_state = 39, .external_lex_state = 5}, [1127] = {.lex_state = 39, .external_lex_state = 5}, [1128] = {.lex_state = 39, .external_lex_state = 5}, [1129] = {.lex_state = 39, .external_lex_state = 5}, - [1130] = {.lex_state = 39, .external_lex_state = 10}, - [1131] = {.lex_state = 39, .external_lex_state = 10}, - [1132] = {.lex_state = 39, .external_lex_state = 10}, - [1133] = {.lex_state = 39, .external_lex_state = 2}, - [1134] = {.lex_state = 39, .external_lex_state = 3}, - [1135] = {.lex_state = 39, .external_lex_state = 9}, - [1136] = {.lex_state = 39, .external_lex_state = 2}, - [1137] = {.lex_state = 39, .external_lex_state = 3}, - [1138] = {.lex_state = 39, .external_lex_state = 3}, - [1139] = {.lex_state = 39, .external_lex_state = 9}, - [1140] = {.lex_state = 39, .external_lex_state = 2}, - [1141] = {.lex_state = 39, .external_lex_state = 2}, - [1142] = {.lex_state = 39, .external_lex_state = 9}, - [1143] = {.lex_state = 39, .external_lex_state = 2}, - [1144] = {.lex_state = 39, .external_lex_state = 3}, - [1145] = {.lex_state = 39, .external_lex_state = 3}, + [1130] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 10}, + [1143] = {.lex_state = 39, .external_lex_state = 10}, + [1144] = {.lex_state = 39, .external_lex_state = 10}, + [1145] = {.lex_state = 39, .external_lex_state = 2}, [1146] = {.lex_state = 39, .external_lex_state = 2}, [1147] = {.lex_state = 39, .external_lex_state = 3}, - [1148] = {.lex_state = 39, .external_lex_state = 11}, - [1149] = {.lex_state = 39, .external_lex_state = 2}, - [1150] = {.lex_state = 39, .external_lex_state = 11}, - [1151] = {.lex_state = 39, .external_lex_state = 11}, + [1148] = {.lex_state = 39, .external_lex_state = 9}, + [1149] = {.lex_state = 39, .external_lex_state = 3}, + [1150] = {.lex_state = 39, .external_lex_state = 3}, + [1151] = {.lex_state = 39, .external_lex_state = 2}, [1152] = {.lex_state = 39, .external_lex_state = 3}, [1153] = {.lex_state = 39, .external_lex_state = 9}, [1154] = {.lex_state = 39, .external_lex_state = 9}, - [1155] = {.lex_state = 39, .external_lex_state = 9}, - [1156] = {.lex_state = 39, .external_lex_state = 9}, - [1157] = {.lex_state = 39, .external_lex_state = 10}, - [1158] = {.lex_state = 39, .external_lex_state = 11}, - [1159] = {.lex_state = 39, .external_lex_state = 9}, - [1160] = {.lex_state = 39, .external_lex_state = 11}, - [1161] = {.lex_state = 39, .external_lex_state = 9}, - [1162] = {.lex_state = 39, .external_lex_state = 10}, - [1163] = {.lex_state = 39, .external_lex_state = 10}, - [1164] = {.lex_state = 39, .external_lex_state = 10}, - [1165] = {.lex_state = 39, .external_lex_state = 9}, - [1166] = {.lex_state = 39, .external_lex_state = 10}, - [1167] = {.lex_state = 39, .external_lex_state = 2}, - [1168] = {.lex_state = 39, .external_lex_state = 10}, - [1169] = {.lex_state = 3, .external_lex_state = 10}, - [1170] = {.lex_state = 39, .external_lex_state = 5}, - [1171] = {.lex_state = 39, .external_lex_state = 5}, - [1172] = {.lex_state = 39, .external_lex_state = 3}, - [1173] = {.lex_state = 39, .external_lex_state = 10}, - [1174] = {.lex_state = 39, .external_lex_state = 10}, - [1175] = {.lex_state = 39, .external_lex_state = 2}, - [1176] = {.lex_state = 39, .external_lex_state = 10}, - [1177] = {.lex_state = 39, .external_lex_state = 8}, + [1155] = {.lex_state = 39, .external_lex_state = 2}, + [1156] = {.lex_state = 39, .external_lex_state = 2}, + [1157] = {.lex_state = 39, .external_lex_state = 3}, + [1158] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 11}, + [1163] = {.lex_state = 39, .external_lex_state = 9}, + [1164] = {.lex_state = 39, .external_lex_state = 2}, + [1165] = {.lex_state = 39, .external_lex_state = 10}, + [1166] = {.lex_state = 39, .external_lex_state = 9}, + [1167] = {.lex_state = 39, .external_lex_state = 9}, + [1168] = {.lex_state = 39, .external_lex_state = 9}, + [1169] = {.lex_state = 39, .external_lex_state = 11}, + [1170] = {.lex_state = 39, .external_lex_state = 11}, + [1171] = {.lex_state = 39, .external_lex_state = 9}, + [1172] = {.lex_state = 39, .external_lex_state = 11}, + [1173] = {.lex_state = 39, .external_lex_state = 9}, + [1174] = {.lex_state = 3, .external_lex_state = 10}, + [1175] = {.lex_state = 39, .external_lex_state = 10}, + [1176] = {.lex_state = 39, .external_lex_state = 9}, + [1177] = {.lex_state = 39, .external_lex_state = 10}, [1178] = {.lex_state = 39, .external_lex_state = 10}, - [1179] = {.lex_state = 39, .external_lex_state = 3}, + [1179] = {.lex_state = 39, .external_lex_state = 10}, [1180] = {.lex_state = 39, .external_lex_state = 10}, [1181] = {.lex_state = 39, .external_lex_state = 10}, - [1182] = {.lex_state = 39, .external_lex_state = 9}, + [1182] = {.lex_state = 39, .external_lex_state = 10}, [1183] = {.lex_state = 39, .external_lex_state = 10}, [1184] = {.lex_state = 39, .external_lex_state = 10}, [1185] = {.lex_state = 39, .external_lex_state = 10}, [1186] = {.lex_state = 39, .external_lex_state = 10}, - [1187] = {.lex_state = 39, .external_lex_state = 5}, - [1188] = {.lex_state = 39, .external_lex_state = 3}, + [1187] = {.lex_state = 39, .external_lex_state = 9}, + [1188] = {.lex_state = 39, .external_lex_state = 9}, [1189] = {.lex_state = 39, .external_lex_state = 10}, [1190] = {.lex_state = 39, .external_lex_state = 10}, [1191] = {.lex_state = 39, .external_lex_state = 10}, [1192] = {.lex_state = 39, .external_lex_state = 10}, [1193] = {.lex_state = 39, .external_lex_state = 10}, - [1194] = {.lex_state = 39, .external_lex_state = 8}, + [1194] = {.lex_state = 39, .external_lex_state = 10}, [1195] = {.lex_state = 39, .external_lex_state = 10}, - [1196] = {.lex_state = 39, .external_lex_state = 12}, - [1197] = {.lex_state = 39, .external_lex_state = 5}, + [1196] = {.lex_state = 39, .external_lex_state = 10}, + [1197] = {.lex_state = 39, .external_lex_state = 10}, [1198] = {.lex_state = 39, .external_lex_state = 10}, - [1199] = {.lex_state = 39, .external_lex_state = 9}, - [1200] = {.lex_state = 3, .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 = 10}, [1202] = {.lex_state = 39, .external_lex_state = 10}, - [1203] = {.lex_state = 39, .external_lex_state = 10}, - [1204] = {.lex_state = 39, .external_lex_state = 10}, - [1205] = {.lex_state = 3, .external_lex_state = 10}, - [1206] = {.lex_state = 39, .external_lex_state = 2}, - [1207] = {.lex_state = 39, .external_lex_state = 3}, - [1208] = {.lex_state = 39, .external_lex_state = 10}, - [1209] = {.lex_state = 39, .external_lex_state = 9}, - [1210] = {.lex_state = 39, .external_lex_state = 10}, - [1211] = {.lex_state = 39, .external_lex_state = 2}, - [1212] = {.lex_state = 39, .external_lex_state = 9}, - [1213] = {.lex_state = 39, .external_lex_state = 9}, + [1203] = {.lex_state = 39, .external_lex_state = 2}, + [1204] = {.lex_state = 3, .external_lex_state = 10}, + [1205] = {.lex_state = 39, .external_lex_state = 10}, + [1206] = {.lex_state = 39, .external_lex_state = 10}, + [1207] = {.lex_state = 39, .external_lex_state = 10}, + [1208] = {.lex_state = 39, .external_lex_state = 8}, + [1209] = {.lex_state = 39, .external_lex_state = 8}, + [1210] = {.lex_state = 39, .external_lex_state = 12}, + [1211] = {.lex_state = 3, .external_lex_state = 10}, + [1212] = {.lex_state = 39, .external_lex_state = 10}, + [1213] = {.lex_state = 39, .external_lex_state = 2}, [1214] = {.lex_state = 39, .external_lex_state = 9}, - [1215] = {.lex_state = 39, .external_lex_state = 9}, - [1216] = {.lex_state = 39, .external_lex_state = 9}, - [1217] = {.lex_state = 39, .external_lex_state = 9}, - [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 = 10}, - [1222] = {.lex_state = 39, .external_lex_state = 10}, - [1223] = {.lex_state = 39, .external_lex_state = 9}, - [1224] = {.lex_state = 39, .external_lex_state = 10}, - [1225] = {.lex_state = 39, .external_lex_state = 10}, - [1226] = {.lex_state = 39, .external_lex_state = 10}, + [1215] = {.lex_state = 39, .external_lex_state = 3}, + [1216] = {.lex_state = 39, .external_lex_state = 3}, + [1217] = {.lex_state = 39, .external_lex_state = 3}, + [1218] = {.lex_state = 39, .external_lex_state = 3}, + [1219] = {.lex_state = 39, .external_lex_state = 2}, + [1220] = {.lex_state = 39, .external_lex_state = 5}, + [1221] = {.lex_state = 39, .external_lex_state = 5}, + [1222] = {.lex_state = 39, .external_lex_state = 5}, + [1223] = {.lex_state = 39, .external_lex_state = 5}, + [1224] = {.lex_state = 39, .external_lex_state = 2}, + [1225] = {.lex_state = 39, .external_lex_state = 3}, + [1226] = {.lex_state = 39, .external_lex_state = 9}, [1227] = {.lex_state = 39, .external_lex_state = 9}, [1228] = {.lex_state = 39, .external_lex_state = 9}, [1229] = {.lex_state = 39, .external_lex_state = 9}, - [1230] = {.lex_state = 39, .external_lex_state = 9}, - [1231] = {.lex_state = 39, .external_lex_state = 9}, - [1232] = {.lex_state = 39, .external_lex_state = 5}, - [1233] = {.lex_state = 39, .external_lex_state = 9}, + [1230] = {.lex_state = 39, .external_lex_state = 10}, + [1231] = {.lex_state = 39, .external_lex_state = 10}, + [1232] = {.lex_state = 39, .external_lex_state = 10}, + [1233] = {.lex_state = 39, .external_lex_state = 10}, [1234] = {.lex_state = 39, .external_lex_state = 9}, - [1235] = {.lex_state = 39, .external_lex_state = 12}, + [1235] = {.lex_state = 39, .external_lex_state = 9}, [1236] = {.lex_state = 39, .external_lex_state = 9}, - [1237] = {.lex_state = 39, .external_lex_state = 10}, + [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}, [1241] = {.lex_state = 39, .external_lex_state = 9}, [1242] = {.lex_state = 39, .external_lex_state = 9}, [1243] = {.lex_state = 39, .external_lex_state = 9}, - [1244] = {.lex_state = 39, .external_lex_state = 9}, + [1244] = {.lex_state = 39, .external_lex_state = 10}, [1245] = {.lex_state = 39, .external_lex_state = 9}, - [1246] = {.lex_state = 39, .external_lex_state = 10}, + [1246] = {.lex_state = 39, .external_lex_state = 9}, [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 = 10}, - [1251] = {.lex_state = 39, .external_lex_state = 12}, + [1248] = {.lex_state = 39, .external_lex_state = 10}, + [1249] = {.lex_state = 39, .external_lex_state = 10}, + [1250] = {.lex_state = 39, .external_lex_state = 9}, + [1251] = {.lex_state = 39, .external_lex_state = 9}, [1252] = {.lex_state = 39, .external_lex_state = 9}, - [1253] = {.lex_state = 39, .external_lex_state = 10}, - [1254] = {.lex_state = 39, .external_lex_state = 12}, + [1253] = {.lex_state = 39, .external_lex_state = 5}, + [1254] = {.lex_state = 39, .external_lex_state = 9}, [1255] = {.lex_state = 39, .external_lex_state = 9}, - [1256] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 10}, + [1261] = {.lex_state = 39, .external_lex_state = 9}, [1262] = {.lex_state = 39, .external_lex_state = 9}, [1263] = {.lex_state = 39, .external_lex_state = 9}, [1264] = {.lex_state = 39, .external_lex_state = 9}, - [1265] = {.lex_state = 39, .external_lex_state = 9}, + [1265] = {.lex_state = 39, .external_lex_state = 10}, [1266] = {.lex_state = 39, .external_lex_state = 9}, - [1267] = {.lex_state = 39, .external_lex_state = 10}, + [1267] = {.lex_state = 39, .external_lex_state = 12}, [1268] = {.lex_state = 39, .external_lex_state = 9}, [1269] = {.lex_state = 39, .external_lex_state = 9}, - [1270] = {.lex_state = 39, .external_lex_state = 9}, + [1270] = {.lex_state = 39, .external_lex_state = 12}, [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 = 9}, [1274] = {.lex_state = 39, .external_lex_state = 9}, [1275] = {.lex_state = 39, .external_lex_state = 9}, [1276] = {.lex_state = 39, .external_lex_state = 9}, [1277] = {.lex_state = 39, .external_lex_state = 10}, [1278] = {.lex_state = 39, .external_lex_state = 9}, - [1279] = {.lex_state = 39, .external_lex_state = 9}, - [1280] = {.lex_state = 39, .external_lex_state = 10}, + [1279] = {.lex_state = 39, .external_lex_state = 10}, + [1280] = {.lex_state = 39, .external_lex_state = 9}, [1281] = {.lex_state = 39, .external_lex_state = 9}, [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 = 3}, - [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 = 10}, + [1286] = {.lex_state = 39, .external_lex_state = 2}, + [1287] = {.lex_state = 39, .external_lex_state = 10}, + [1288] = {.lex_state = 39, .external_lex_state = 10}, + [1289] = {.lex_state = 39, .external_lex_state = 9}, + [1290] = {.lex_state = 39, .external_lex_state = 9}, + [1291] = {.lex_state = 39, .external_lex_state = 9}, + [1292] = {.lex_state = 39, .external_lex_state = 9}, + [1293] = {.lex_state = 39, .external_lex_state = 9}, [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 = 9}, - [1297] = {.lex_state = 39, .external_lex_state = 9}, - [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}, + [1297] = {.lex_state = 39, .external_lex_state = 10}, + [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 = 9}, [1303] = {.lex_state = 39, .external_lex_state = 9}, [1304] = {.lex_state = 39, .external_lex_state = 10}, - [1305] = {.lex_state = 39, .external_lex_state = 10}, - [1306] = {.lex_state = 39, .external_lex_state = 9}, + [1305] = {.lex_state = 39, .external_lex_state = 9}, + [1306] = {.lex_state = 39, .external_lex_state = 10}, [1307] = {.lex_state = 39, .external_lex_state = 10}, [1308] = {.lex_state = 39, .external_lex_state = 10}, - [1309] = {.lex_state = 39, .external_lex_state = 10}, + [1309] = {.lex_state = 39, .external_lex_state = 9}, [1310] = {.lex_state = 39, .external_lex_state = 9}, [1311] = {.lex_state = 39, .external_lex_state = 10}, [1312] = {.lex_state = 39, .external_lex_state = 10}, - [1313] = {.lex_state = 39, .external_lex_state = 10}, - [1314] = {.lex_state = 39, .external_lex_state = 10}, - [1315] = {.lex_state = 39, .external_lex_state = 10}, + [1313] = {.lex_state = 39, .external_lex_state = 9}, + [1314] = {.lex_state = 39, .external_lex_state = 12}, + [1315] = {.lex_state = 39, .external_lex_state = 9}, [1316] = {.lex_state = 39, .external_lex_state = 10}, - [1317] = {.lex_state = 39, .external_lex_state = 10}, - [1318] = {.lex_state = 39, .external_lex_state = 10}, - [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}, + [1317] = {.lex_state = 39, .external_lex_state = 9}, + [1318] = {.lex_state = 39, .external_lex_state = 9}, + [1319] = {.lex_state = 39, .external_lex_state = 9}, + [1320] = {.lex_state = 39, .external_lex_state = 9}, + [1321] = {.lex_state = 39, .external_lex_state = 9}, + [1322] = {.lex_state = 39, .external_lex_state = 9}, + [1323] = {.lex_state = 39, .external_lex_state = 9}, [1324] = {.lex_state = 39, .external_lex_state = 10}, - [1325] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 9}, + [1328] = {.lex_state = 39, .external_lex_state = 10}, [1329] = {.lex_state = 39, .external_lex_state = 10}, [1330] = {.lex_state = 39, .external_lex_state = 10}, [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 = 9}, + [1333] = {.lex_state = 39, .external_lex_state = 9}, + [1334] = {.lex_state = 39, .external_lex_state = 10}, [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}, + [1338] = {.lex_state = 39, .external_lex_state = 10}, [1339] = {.lex_state = 39, .external_lex_state = 10}, [1340] = {.lex_state = 39, .external_lex_state = 10}, - [1341] = {.lex_state = 39, .external_lex_state = 10}, + [1341] = {.lex_state = 39, .external_lex_state = 9}, [1342] = {.lex_state = 39, .external_lex_state = 10}, [1343] = {.lex_state = 39, .external_lex_state = 10}, [1344] = {.lex_state = 39, .external_lex_state = 10}, - [1345] = {.lex_state = 39, .external_lex_state = 10}, + [1345] = {.lex_state = 39, .external_lex_state = 9}, [1346] = {.lex_state = 39, .external_lex_state = 10}, - [1347] = {.lex_state = 39, .external_lex_state = 10}, + [1347] = {.lex_state = 39, .external_lex_state = 9}, [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}, + [1350] = {.lex_state = 39, .external_lex_state = 9}, + [1351] = {.lex_state = 39, .external_lex_state = 10}, [1352] = {.lex_state = 39, .external_lex_state = 10}, [1353] = {.lex_state = 39, .external_lex_state = 9}, - [1354] = {.lex_state = 39, .external_lex_state = 10}, + [1354] = {.lex_state = 39, .external_lex_state = 9}, [1355] = {.lex_state = 39, .external_lex_state = 10}, - [1356] = {.lex_state = 39, .external_lex_state = 10}, - [1357] = {.lex_state = 39, .external_lex_state = 10}, + [1356] = {.lex_state = 39, .external_lex_state = 9}, + [1357] = {.lex_state = 39, .external_lex_state = 9}, [1358] = {.lex_state = 39, .external_lex_state = 10}, [1359] = {.lex_state = 39, .external_lex_state = 9}, [1360] = {.lex_state = 39, .external_lex_state = 10}, - [1361] = {.lex_state = 39, .external_lex_state = 10}, - [1362] = {.lex_state = 39, .external_lex_state = 10}, - [1363] = {.lex_state = 39, .external_lex_state = 10}, + [1361] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 10}, - [1369] = {.lex_state = 39, .external_lex_state = 10}, + [1369] = {.lex_state = 39, .external_lex_state = 9}, [1370] = {.lex_state = 39, .external_lex_state = 10}, - [1371] = {.lex_state = 39, .external_lex_state = 10}, + [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 = 10}, + [1373] = {.lex_state = 39, .external_lex_state = 9}, + [1374] = {.lex_state = 39, .external_lex_state = 9}, [1375] = {.lex_state = 39, .external_lex_state = 10}, - [1376] = {.lex_state = 39, .external_lex_state = 10}, + [1376] = {.lex_state = 39, .external_lex_state = 9}, [1377] = {.lex_state = 39, .external_lex_state = 10}, - [1378] = {.lex_state = 39, .external_lex_state = 9}, - [1379] = {.lex_state = 39, .external_lex_state = 8}, + [1378] = {.lex_state = 39, .external_lex_state = 10}, + [1379] = {.lex_state = 39, .external_lex_state = 10}, [1380] = {.lex_state = 39, .external_lex_state = 10}, - [1381] = {.lex_state = 39, .external_lex_state = 9}, + [1381] = {.lex_state = 39, .external_lex_state = 10}, [1382] = {.lex_state = 39, .external_lex_state = 10}, - [1383] = {.lex_state = 39, .external_lex_state = 9}, - [1384] = {.lex_state = 39, .external_lex_state = 9}, - [1385] = {.lex_state = 39, .external_lex_state = 9}, - [1386] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 8}, [1387] = {.lex_state = 39, .external_lex_state = 9}, - [1388] = {.lex_state = 39, .external_lex_state = 9}, - [1389] = {.lex_state = 39, .external_lex_state = 9}, + [1388] = {.lex_state = 39, .external_lex_state = 10}, + [1389] = {.lex_state = 39, .external_lex_state = 10}, [1390] = {.lex_state = 39, .external_lex_state = 9}, [1391] = {.lex_state = 39, .external_lex_state = 9}, - [1392] = {.lex_state = 39, .external_lex_state = 9}, + [1392] = {.lex_state = 39, .external_lex_state = 10}, [1393] = {.lex_state = 39, .external_lex_state = 9}, - [1394] = {.lex_state = 39, .external_lex_state = 11}, - [1395] = {.lex_state = 39, .external_lex_state = 9}, - [1396] = {.lex_state = 39, .external_lex_state = 11}, - [1397] = {.lex_state = 39, .external_lex_state = 11}, - [1398] = {.lex_state = 39, .external_lex_state = 11}, - [1399] = {.lex_state = 39, .external_lex_state = 9}, - [1400] = {.lex_state = 39, .external_lex_state = 11}, - [1401] = {.lex_state = 39, .external_lex_state = 9}, - [1402] = {.lex_state = 39, .external_lex_state = 2}, - [1403] = {.lex_state = 39, .external_lex_state = 11}, - [1404] = {.lex_state = 39, .external_lex_state = 9}, - [1405] = {.lex_state = 39, .external_lex_state = 11}, - [1406] = {.lex_state = 39, .external_lex_state = 11}, - [1407] = {.lex_state = 39, .external_lex_state = 11}, - [1408] = {.lex_state = 39, .external_lex_state = 11}, - [1409] = {.lex_state = 39, .external_lex_state = 9}, + [1394] = {.lex_state = 39, .external_lex_state = 10}, + [1395] = {.lex_state = 39, .external_lex_state = 10}, + [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 = 10}, + [1400] = {.lex_state = 39, .external_lex_state = 10}, + [1401] = {.lex_state = 39, .external_lex_state = 10}, + [1402] = {.lex_state = 39, .external_lex_state = 10}, + [1403] = {.lex_state = 39, .external_lex_state = 10}, + [1404] = {.lex_state = 39, .external_lex_state = 10}, + [1405] = {.lex_state = 39, .external_lex_state = 10}, + [1406] = {.lex_state = 39, .external_lex_state = 10}, + [1407] = {.lex_state = 39, .external_lex_state = 10}, + [1408] = {.lex_state = 39, .external_lex_state = 10}, + [1409] = {.lex_state = 39, .external_lex_state = 10}, [1410] = {.lex_state = 39, .external_lex_state = 11}, [1411] = {.lex_state = 39, .external_lex_state = 2}, - [1412] = {.lex_state = 39, .external_lex_state = 9}, - [1413] = {.lex_state = 39, .external_lex_state = 9}, - [1414] = {.lex_state = 39, .external_lex_state = 11}, - [1415] = {.lex_state = 39, .external_lex_state = 11}, - [1416] = {.lex_state = 39, .external_lex_state = 11}, - [1417] = {.lex_state = 39, .external_lex_state = 11}, - [1418] = {.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 = 3}, + [1415] = {.lex_state = 39, .external_lex_state = 9}, + [1416] = {.lex_state = 39, .external_lex_state = 9}, + [1417] = {.lex_state = 39, .external_lex_state = 9}, + [1418] = {.lex_state = 39, .external_lex_state = 3}, [1419] = {.lex_state = 39, .external_lex_state = 11}, [1420] = {.lex_state = 39, .external_lex_state = 11}, - [1421] = {.lex_state = 39, .external_lex_state = 2}, + [1421] = {.lex_state = 39, .external_lex_state = 11}, [1422] = {.lex_state = 39, .external_lex_state = 11}, [1423] = {.lex_state = 39, .external_lex_state = 11}, - [1424] = {.lex_state = 39, .external_lex_state = 11}, - [1425] = {.lex_state = 39, .external_lex_state = 3}, - [1426] = {.lex_state = 39, .external_lex_state = 11}, - [1427] = {.lex_state = 39, .external_lex_state = 11}, - [1428] = {.lex_state = 39, .external_lex_state = 11}, - [1429] = {.lex_state = 39, .external_lex_state = 11}, + [1424] = {.lex_state = 39, .external_lex_state = 9}, + [1425] = {.lex_state = 39, .external_lex_state = 11}, + [1426] = {.lex_state = 39, .external_lex_state = 3}, + [1427] = {.lex_state = 39, .external_lex_state = 9}, + [1428] = {.lex_state = 39, .external_lex_state = 2}, + [1429] = {.lex_state = 39, .external_lex_state = 9}, [1430] = {.lex_state = 39, .external_lex_state = 11}, [1431] = {.lex_state = 39, .external_lex_state = 11}, [1432] = {.lex_state = 39, .external_lex_state = 11}, - [1433] = {.lex_state = 39, .external_lex_state = 11}, - [1434] = {.lex_state = 39, .external_lex_state = 3}, + [1433] = {.lex_state = 39, .external_lex_state = 9}, + [1434] = {.lex_state = 39, .external_lex_state = 11}, [1435] = {.lex_state = 39, .external_lex_state = 11}, - [1436] = {.lex_state = 39, .external_lex_state = 2}, - [1437] = {.lex_state = 39, .external_lex_state = 11}, - [1438] = {.lex_state = 39, .external_lex_state = 11}, - [1439] = {.lex_state = 39, .external_lex_state = 11}, + [1436] = {.lex_state = 39, .external_lex_state = 3}, + [1437] = {.lex_state = 39, .external_lex_state = 9}, + [1438] = {.lex_state = 39, .external_lex_state = 9}, + [1439] = {.lex_state = 39, .external_lex_state = 2}, [1440] = {.lex_state = 39, .external_lex_state = 11}, [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 = 11}, - [1445] = {.lex_state = 39, .external_lex_state = 2}, + [1444] = {.lex_state = 39, .external_lex_state = 9}, + [1445] = {.lex_state = 39, .external_lex_state = 11}, [1446] = {.lex_state = 39, .external_lex_state = 11}, - [1447] = {.lex_state = 39, .external_lex_state = 9}, - [1448] = {.lex_state = 39, .external_lex_state = 3}, - [1449] = {.lex_state = 39, .external_lex_state = 9}, - [1450] = {.lex_state = 39, .external_lex_state = 9}, - [1451] = {.lex_state = 39, .external_lex_state = 3}, - [1452] = {.lex_state = 39, .external_lex_state = 3}, + [1447] = {.lex_state = 39, .external_lex_state = 3}, + [1448] = {.lex_state = 39, .external_lex_state = 9}, + [1449] = {.lex_state = 39, .external_lex_state = 11}, + [1450] = {.lex_state = 39, .external_lex_state = 11}, + [1451] = {.lex_state = 39, .external_lex_state = 11}, + [1452] = {.lex_state = 39, .external_lex_state = 11}, [1453] = {.lex_state = 39, .external_lex_state = 9}, - [1454] = {.lex_state = 39, .external_lex_state = 9}, - [1455] = {.lex_state = 39, .external_lex_state = 11}, - [1456] = {.lex_state = 39, .external_lex_state = 9}, + [1454] = {.lex_state = 39, .external_lex_state = 11}, + [1455] = {.lex_state = 39, .external_lex_state = 9}, + [1456] = {.lex_state = 39, .external_lex_state = 2}, [1457] = {.lex_state = 39, .external_lex_state = 9}, - [1458] = {.lex_state = 39, .external_lex_state = 3}, - [1459] = {.lex_state = 39, .external_lex_state = 2}, - [1460] = {.lex_state = 39, .external_lex_state = 9}, - [1461] = {.lex_state = 39, .external_lex_state = 9}, + [1458] = {.lex_state = 39, .external_lex_state = 2}, + [1459] = {.lex_state = 39, .external_lex_state = 11}, + [1460] = {.lex_state = 39, .external_lex_state = 11}, + [1461] = {.lex_state = 39, .external_lex_state = 11}, [1462] = {.lex_state = 39, .external_lex_state = 11}, [1463] = {.lex_state = 39, .external_lex_state = 9}, - [1464] = {.lex_state = 39, .external_lex_state = 9}, - [1465] = {.lex_state = 39, .external_lex_state = 9}, - [1466] = {.lex_state = 39, .external_lex_state = 9}, + [1464] = {.lex_state = 39, .external_lex_state = 11}, + [1465] = {.lex_state = 39, .external_lex_state = 11}, + [1466] = {.lex_state = 39, .external_lex_state = 11}, [1467] = {.lex_state = 39, .external_lex_state = 9}, - [1468] = {.lex_state = 3, .external_lex_state = 10}, - [1469] = {.lex_state = 39, .external_lex_state = 8}, - [1470] = {.lex_state = 39, .external_lex_state = 8}, - [1471] = {.lex_state = 39, .external_lex_state = 11}, - [1472] = {.lex_state = 3, .external_lex_state = 10}, - [1473] = {.lex_state = 3, .external_lex_state = 10}, - [1474] = {.lex_state = 39, .external_lex_state = 8}, - [1475] = {.lex_state = 39, .external_lex_state = 9}, - [1476] = {.lex_state = 3, .external_lex_state = 10}, - [1477] = {.lex_state = 39, .external_lex_state = 8}, - [1478] = {.lex_state = 39, .external_lex_state = 8}, - [1479] = {.lex_state = 3, .external_lex_state = 10}, + [1468] = {.lex_state = 39, .external_lex_state = 11}, + [1469] = {.lex_state = 39, .external_lex_state = 9}, + [1470] = {.lex_state = 39, .external_lex_state = 9}, + [1471] = {.lex_state = 39, .external_lex_state = 9}, + [1472] = {.lex_state = 39, .external_lex_state = 11}, + [1473] = {.lex_state = 39, .external_lex_state = 11}, + [1474] = {.lex_state = 39, .external_lex_state = 3}, + [1475] = {.lex_state = 39, .external_lex_state = 11}, + [1476] = {.lex_state = 39, .external_lex_state = 11}, + [1477] = {.lex_state = 39, .external_lex_state = 11}, + [1478] = {.lex_state = 39, .external_lex_state = 11}, + [1479] = {.lex_state = 39, .external_lex_state = 9}, [1480] = {.lex_state = 39, .external_lex_state = 11}, [1481] = {.lex_state = 39, .external_lex_state = 11}, [1482] = {.lex_state = 39, .external_lex_state = 11}, - [1483] = {.lex_state = 3, .external_lex_state = 10}, - [1484] = {.lex_state = 39, .external_lex_state = 11}, - [1485] = {.lex_state = 39, .external_lex_state = 8}, - [1486] = {.lex_state = 39, .external_lex_state = 11}, + [1483] = {.lex_state = 39, .external_lex_state = 11}, + [1484] = {.lex_state = 3, .external_lex_state = 10}, + [1485] = {.lex_state = 3, .external_lex_state = 10}, + [1486] = {.lex_state = 39, .external_lex_state = 9}, [1487] = {.lex_state = 39, .external_lex_state = 9}, - [1488] = {.lex_state = 39, .external_lex_state = 9}, + [1488] = {.lex_state = 3, .external_lex_state = 10}, [1489] = {.lex_state = 39, .external_lex_state = 9}, - [1490] = {.lex_state = 39, .external_lex_state = 9}, - [1491] = {.lex_state = 39, .external_lex_state = 9}, - [1492] = {.lex_state = 39, .external_lex_state = 9}, + [1490] = {.lex_state = 39, .external_lex_state = 8}, + [1491] = {.lex_state = 39, .external_lex_state = 11}, + [1492] = {.lex_state = 3, .external_lex_state = 10}, [1493] = {.lex_state = 39, .external_lex_state = 9}, - [1494] = {.lex_state = 39, .external_lex_state = 8}, - [1495] = {.lex_state = 3, .external_lex_state = 10}, - [1496] = {.lex_state = 3, .external_lex_state = 10}, - [1497] = {.lex_state = 39, .external_lex_state = 8}, + [1494] = {.lex_state = 39, .external_lex_state = 9}, + [1495] = {.lex_state = 39, .external_lex_state = 8}, + [1496] = {.lex_state = 39, .external_lex_state = 8}, + [1497] = {.lex_state = 39, .external_lex_state = 11}, [1498] = {.lex_state = 39, .external_lex_state = 8}, - [1499] = {.lex_state = 3, .external_lex_state = 10}, - [1500] = {.lex_state = 39, .external_lex_state = 9}, - [1501] = {.lex_state = 3, .external_lex_state = 10}, - [1502] = {.lex_state = 39, .external_lex_state = 8}, + [1499] = {.lex_state = 39, .external_lex_state = 11}, + [1500] = {.lex_state = 3, .external_lex_state = 10}, + [1501] = {.lex_state = 39, .external_lex_state = 8}, + [1502] = {.lex_state = 3, .external_lex_state = 10}, [1503] = {.lex_state = 3, .external_lex_state = 10}, [1504] = {.lex_state = 39, .external_lex_state = 11}, - [1505] = {.lex_state = 39, .external_lex_state = 9}, + [1505] = {.lex_state = 39, .external_lex_state = 8}, [1506] = {.lex_state = 39, .external_lex_state = 9}, - [1507] = {.lex_state = 39, .external_lex_state = 11}, + [1507] = {.lex_state = 39, .external_lex_state = 9}, [1508] = {.lex_state = 39, .external_lex_state = 9}, - [1509] = {.lex_state = 39, .external_lex_state = 11}, + [1509] = {.lex_state = 39, .external_lex_state = 8}, [1510] = {.lex_state = 39, .external_lex_state = 9}, - [1511] = {.lex_state = 3, .external_lex_state = 10}, + [1511] = {.lex_state = 39, .external_lex_state = 9}, [1512] = {.lex_state = 39, .external_lex_state = 9}, [1513] = {.lex_state = 39, .external_lex_state = 9}, - [1514] = {.lex_state = 3, .external_lex_state = 10}, - [1515] = {.lex_state = 3, .external_lex_state = 10}, - [1516] = {.lex_state = 39, .external_lex_state = 9}, - [1517] = {.lex_state = 39, .external_lex_state = 9}, - [1518] = {.lex_state = 3, .external_lex_state = 10}, + [1514] = {.lex_state = 39, .external_lex_state = 9}, + [1515] = {.lex_state = 39, .external_lex_state = 11}, + [1516] = {.lex_state = 3, .external_lex_state = 10}, + [1517] = {.lex_state = 39, .external_lex_state = 8}, + [1518] = {.lex_state = 39, .external_lex_state = 8}, [1519] = {.lex_state = 3, .external_lex_state = 10}, - [1520] = {.lex_state = 3, .external_lex_state = 10}, + [1520] = {.lex_state = 39, .external_lex_state = 8}, [1521] = {.lex_state = 3, .external_lex_state = 10}, - [1522] = {.lex_state = 39, .external_lex_state = 9}, + [1522] = {.lex_state = 39, .external_lex_state = 11}, [1523] = {.lex_state = 3, .external_lex_state = 10}, - [1524] = {.lex_state = 3, .external_lex_state = 10}, - [1525] = {.lex_state = 39, .external_lex_state = 9}, - [1526] = {.lex_state = 39, .external_lex_state = 9}, + [1524] = {.lex_state = 39, .external_lex_state = 9}, + [1525] = {.lex_state = 3, .external_lex_state = 10}, + [1526] = {.lex_state = 3, .external_lex_state = 10}, [1527] = {.lex_state = 39, .external_lex_state = 11}, - [1528] = {.lex_state = 3, .external_lex_state = 10}, - [1529] = {.lex_state = 39, .external_lex_state = 8}, - [1530] = {.lex_state = 39, .external_lex_state = 8}, - [1531] = {.lex_state = 39, .external_lex_state = 8}, - [1532] = {.lex_state = 39, .external_lex_state = 8}, - [1533] = {.lex_state = 39, .external_lex_state = 8}, - [1534] = {.lex_state = 3, .external_lex_state = 10}, - [1535] = {.lex_state = 3, .external_lex_state = 10}, - [1536] = {.lex_state = 39, .external_lex_state = 9}, - [1537] = {.lex_state = 39, .external_lex_state = 9}, - [1538] = {.lex_state = 3, .external_lex_state = 10}, - [1539] = {.lex_state = 3, .external_lex_state = 10}, - [1540] = {.lex_state = 3, .external_lex_state = 10}, + [1528] = {.lex_state = 39, .external_lex_state = 11}, + [1529] = {.lex_state = 39, .external_lex_state = 11}, + [1530] = {.lex_state = 39, .external_lex_state = 11}, + [1531] = {.lex_state = 3, .external_lex_state = 10}, + [1532] = {.lex_state = 39, .external_lex_state = 9}, + [1533] = {.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 = 39, .external_lex_state = 8}, + [1539] = {.lex_state = 39, .external_lex_state = 8}, + [1540] = {.lex_state = 39, .external_lex_state = 8}, [1541] = {.lex_state = 3, .external_lex_state = 10}, [1542] = {.lex_state = 39, .external_lex_state = 11}, - [1543] = {.lex_state = 39, .external_lex_state = 11}, - [1544] = {.lex_state = 3, .external_lex_state = 10}, - [1545] = {.lex_state = 3, .external_lex_state = 10}, - [1546] = {.lex_state = 39, .external_lex_state = 11}, - [1547] = {.lex_state = 39, .external_lex_state = 11}, - [1548] = {.lex_state = 3, .external_lex_state = 10}, - [1549] = {.lex_state = 39, .external_lex_state = 11}, - [1550] = {.lex_state = 3, .external_lex_state = 10}, - [1551] = {.lex_state = 3, .external_lex_state = 10}, + [1543] = {.lex_state = 3, .external_lex_state = 10}, + [1544] = {.lex_state = 39, .external_lex_state = 8}, + [1545] = {.lex_state = 39, .external_lex_state = 9}, + [1546] = {.lex_state = 39, .external_lex_state = 8}, + [1547] = {.lex_state = 39, .external_lex_state = 8}, + [1548] = {.lex_state = 39, .external_lex_state = 8}, + [1549] = {.lex_state = 3, .external_lex_state = 10}, + [1550] = {.lex_state = 39, .external_lex_state = 9}, + [1551] = {.lex_state = 39, .external_lex_state = 8}, [1552] = {.lex_state = 39, .external_lex_state = 8}, - [1553] = {.lex_state = 39, .external_lex_state = 8}, - [1554] = {.lex_state = 39, .external_lex_state = 8}, - [1555] = {.lex_state = 39, .external_lex_state = 8}, - [1556] = {.lex_state = 39, .external_lex_state = 8}, - [1557] = {.lex_state = 39, .external_lex_state = 9}, + [1553] = {.lex_state = 39, .external_lex_state = 11}, + [1554] = {.lex_state = 3, .external_lex_state = 10}, + [1555] = {.lex_state = 3, .external_lex_state = 10}, + [1556] = {.lex_state = 3, .external_lex_state = 10}, + [1557] = {.lex_state = 3, .external_lex_state = 10}, [1558] = {.lex_state = 39, .external_lex_state = 11}, - [1559] = {.lex_state = 3, .external_lex_state = 10}, - [1560] = {.lex_state = 39, .external_lex_state = 11}, - [1561] = {.lex_state = 39, .external_lex_state = 8}, + [1559] = {.lex_state = 39, .external_lex_state = 11}, + [1560] = {.lex_state = 3, .external_lex_state = 10}, + [1561] = {.lex_state = 3, .external_lex_state = 10}, [1562] = {.lex_state = 3, .external_lex_state = 10}, [1563] = {.lex_state = 39, .external_lex_state = 8}, [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 = 3, .external_lex_state = 10}, - [1569] = {.lex_state = 39, .external_lex_state = 8}, - [1570] = {.lex_state = 39, .external_lex_state = 9}, - [1571] = {.lex_state = 39, .external_lex_state = 8}, - [1572] = {.lex_state = 39, .external_lex_state = 8}, - [1573] = {.lex_state = 39, .external_lex_state = 8}, - [1574] = {.lex_state = 39, .external_lex_state = 9}, + [1565] = {.lex_state = 3, .external_lex_state = 10}, + [1566] = {.lex_state = 39, .external_lex_state = 8}, + [1567] = {.lex_state = 3, .external_lex_state = 10}, + [1568] = {.lex_state = 39, .external_lex_state = 11}, + [1569] = {.lex_state = 3, .external_lex_state = 10}, + [1570] = {.lex_state = 39, .external_lex_state = 8}, + [1571] = {.lex_state = 3, .external_lex_state = 10}, + [1572] = {.lex_state = 3, .external_lex_state = 10}, + [1573] = {.lex_state = 3, .external_lex_state = 10}, + [1574] = {.lex_state = 3, .external_lex_state = 10}, [1575] = {.lex_state = 3, .external_lex_state = 10}, - [1576] = {.lex_state = 39, .external_lex_state = 8}, + [1576] = {.lex_state = 3, .external_lex_state = 10}, [1577] = {.lex_state = 39, .external_lex_state = 11}, - [1578] = {.lex_state = 39, .external_lex_state = 9}, - [1579] = {.lex_state = 39, .external_lex_state = 11}, - [1580] = {.lex_state = 39, .external_lex_state = 8}, - [1581] = {.lex_state = 3, .external_lex_state = 10}, - [1582] = {.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 = 9}, + [1581] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 39, .external_lex_state = 8}, - [1587] = {.lex_state = 39, .external_lex_state = 8}, - [1588] = {.lex_state = 39, .external_lex_state = 8}, - [1589] = {.lex_state = 3, .external_lex_state = 10}, - [1590] = {.lex_state = 39, .external_lex_state = 9}, - [1591] = {.lex_state = 39, .external_lex_state = 11}, - [1592] = {.lex_state = 39, .external_lex_state = 11}, - [1593] = {.lex_state = 39, .external_lex_state = 8}, - [1594] = {.lex_state = 39, .external_lex_state = 9}, - [1595] = {.lex_state = 39, .external_lex_state = 8}, - [1596] = {.lex_state = 39, .external_lex_state = 9}, + [1584] = {.lex_state = 3, .external_lex_state = 10}, + [1585] = {.lex_state = 3, .external_lex_state = 10}, + [1586] = {.lex_state = 39, .external_lex_state = 9}, + [1587] = {.lex_state = 39, .external_lex_state = 9}, + [1588] = {.lex_state = 3, .external_lex_state = 10}, + [1589] = {.lex_state = 39, .external_lex_state = 9}, + [1590] = {.lex_state = 39, .external_lex_state = 11}, + [1591] = {.lex_state = 3, .external_lex_state = 10}, + [1592] = {.lex_state = 39, .external_lex_state = 9}, + [1593] = {.lex_state = 39, .external_lex_state = 9}, + [1594] = {.lex_state = 3, .external_lex_state = 10}, + [1595] = {.lex_state = 3, .external_lex_state = 10}, + [1596] = {.lex_state = 39, .external_lex_state = 11}, [1597] = {.lex_state = 39, .external_lex_state = 9}, - [1598] = {.lex_state = 3, .external_lex_state = 10}, - [1599] = {.lex_state = 3, .external_lex_state = 10}, - [1600] = {.lex_state = 39, .external_lex_state = 8}, - [1601] = {.lex_state = 39, .external_lex_state = 9}, + [1598] = {.lex_state = 39, .external_lex_state = 11}, + [1599] = {.lex_state = 39, .external_lex_state = 8}, + [1600] = {.lex_state = 39, .external_lex_state = 11}, + [1601] = {.lex_state = 39, .external_lex_state = 8}, [1602] = {.lex_state = 39, .external_lex_state = 8}, - [1603] = {.lex_state = 39, .external_lex_state = 12}, - [1604] = {.lex_state = 39, .external_lex_state = 12}, - [1605] = {.lex_state = 3, .external_lex_state = 10}, - [1606] = {.lex_state = 39, .external_lex_state = 12}, - [1607] = {.lex_state = 39, .external_lex_state = 2}, - [1608] = {.lex_state = 39, .external_lex_state = 12}, - [1609] = {.lex_state = 39, .external_lex_state = 12}, - [1610] = {.lex_state = 39, .external_lex_state = 12}, - [1611] = {.lex_state = 39, .external_lex_state = 9}, - [1612] = {.lex_state = 39, .external_lex_state = 12}, - [1613] = {.lex_state = 39, .external_lex_state = 12}, - [1614] = {.lex_state = 39, .external_lex_state = 2}, - [1615] = {.lex_state = 39, .external_lex_state = 2}, - [1616] = {.lex_state = 39, .external_lex_state = 9}, - [1617] = {.lex_state = 39, .external_lex_state = 12}, - [1618] = {.lex_state = 39, .external_lex_state = 12}, - [1619] = {.lex_state = 39, .external_lex_state = 12}, + [1603] = {.lex_state = 39, .external_lex_state = 8}, + [1604] = {.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 = 9}, + [1608] = {.lex_state = 39, .external_lex_state = 11}, + [1609] = {.lex_state = 39, .external_lex_state = 8}, + [1610] = {.lex_state = 39, .external_lex_state = 8}, + [1611] = {.lex_state = 39, .external_lex_state = 8}, + [1612] = {.lex_state = 39, .external_lex_state = 8}, + [1613] = {.lex_state = 3, .external_lex_state = 10}, + [1614] = {.lex_state = 39, .external_lex_state = 8}, + [1615] = {.lex_state = 39, .external_lex_state = 11}, + [1616] = {.lex_state = 39, .external_lex_state = 8}, + [1617] = {.lex_state = 39, .external_lex_state = 8}, + [1618] = {.lex_state = 39, .external_lex_state = 8}, + [1619] = {.lex_state = 39, .external_lex_state = 9}, [1620] = {.lex_state = 39, .external_lex_state = 9}, - [1621] = {.lex_state = 39, .external_lex_state = 12}, - [1622] = {.lex_state = 39, .external_lex_state = 12}, - [1623] = {.lex_state = 39, .external_lex_state = 12}, - [1624] = {.lex_state = 39, .external_lex_state = 11}, - [1625] = {.lex_state = 39, .external_lex_state = 2}, - [1626] = {.lex_state = 39, .external_lex_state = 11}, - [1627] = {.lex_state = 39, .external_lex_state = 11}, - [1628] = {.lex_state = 39, .external_lex_state = 11}, - [1629] = {.lex_state = 39, .external_lex_state = 11}, - [1630] = {.lex_state = 39, .external_lex_state = 9}, + [1621] = {.lex_state = 39, .external_lex_state = 11}, + [1622] = {.lex_state = 39, .external_lex_state = 11}, + [1623] = {.lex_state = 39, .external_lex_state = 11}, + [1624] = {.lex_state = 3, .external_lex_state = 10}, + [1625] = {.lex_state = 39, .external_lex_state = 9}, + [1626] = {.lex_state = 39, .external_lex_state = 9}, + [1627] = {.lex_state = 3, .external_lex_state = 10}, + [1628] = {.lex_state = 39, .external_lex_state = 2}, + [1629] = {.lex_state = 39, .external_lex_state = 9}, + [1630] = {.lex_state = 39, .external_lex_state = 12}, [1631] = {.lex_state = 39, .external_lex_state = 2}, - [1632] = {.lex_state = 39, .external_lex_state = 11}, - [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 = 11}, - [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 = 39, .external_lex_state = 8}, + [1632] = {.lex_state = 39, .external_lex_state = 12}, + [1633] = {.lex_state = 39, .external_lex_state = 12}, + [1634] = {.lex_state = 39, .external_lex_state = 2}, + [1635] = {.lex_state = 3, .external_lex_state = 10}, + [1636] = {.lex_state = 39, .external_lex_state = 12}, + [1637] = {.lex_state = 39, .external_lex_state = 12}, + [1638] = {.lex_state = 39, .external_lex_state = 9}, + [1639] = {.lex_state = 39, .external_lex_state = 2}, + [1640] = {.lex_state = 39, .external_lex_state = 12}, [1641] = {.lex_state = 39, .external_lex_state = 12}, - [1642] = {.lex_state = 39, .external_lex_state = 11}, - [1643] = {.lex_state = 39, .external_lex_state = 11}, - [1644] = {.lex_state = 39, .external_lex_state = 11}, - [1645] = {.lex_state = 39, .external_lex_state = 11}, - [1646] = {.lex_state = 39, .external_lex_state = 11}, + [1642] = {.lex_state = 39, .external_lex_state = 12}, + [1643] = {.lex_state = 39, .external_lex_state = 8}, + [1644] = {.lex_state = 39, .external_lex_state = 2}, + [1645] = {.lex_state = 39, .external_lex_state = 2}, + [1646] = {.lex_state = 39, .external_lex_state = 2}, [1647] = {.lex_state = 39, .external_lex_state = 12}, - [1648] = {.lex_state = 39, .external_lex_state = 11}, - [1649] = {.lex_state = 39, .external_lex_state = 8}, - [1650] = {.lex_state = 39, .external_lex_state = 12}, - [1651] = {.lex_state = 39, .external_lex_state = 12}, - [1652] = {.lex_state = 39, .external_lex_state = 11}, - [1653] = {.lex_state = 39, .external_lex_state = 11}, - [1654] = {.lex_state = 39, .external_lex_state = 12}, - [1655] = {.lex_state = 39, .external_lex_state = 12}, + [1648] = {.lex_state = 39, .external_lex_state = 2}, + [1649] = {.lex_state = 39, .external_lex_state = 9}, + [1650] = {.lex_state = 39, .external_lex_state = 9}, + [1651] = {.lex_state = 3, .external_lex_state = 10}, + [1652] = {.lex_state = 3, .external_lex_state = 10}, + [1653] = {.lex_state = 39, .external_lex_state = 9}, + [1654] = {.lex_state = 3, .external_lex_state = 10}, + [1655] = {.lex_state = 3, .external_lex_state = 10}, [1656] = {.lex_state = 3, .external_lex_state = 10}, - [1657] = {.lex_state = 39, .external_lex_state = 11}, + [1657] = {.lex_state = 3, .external_lex_state = 10}, [1658] = {.lex_state = 39, .external_lex_state = 12}, - [1659] = {.lex_state = 39, .external_lex_state = 11}, - [1660] = {.lex_state = 39, .external_lex_state = 11}, - [1661] = {.lex_state = 39, .external_lex_state = 11}, - [1662] = {.lex_state = 39, .external_lex_state = 11}, - [1663] = {.lex_state = 39, .external_lex_state = 12}, - [1664] = {.lex_state = 3, .external_lex_state = 10}, - [1665] = {.lex_state = 3, .external_lex_state = 10}, - [1666] = {.lex_state = 3, .external_lex_state = 10}, - [1667] = {.lex_state = 3, .external_lex_state = 10}, - [1668] = {.lex_state = 39, .external_lex_state = 2}, - [1669] = {.lex_state = 39, .external_lex_state = 12}, - [1670] = {.lex_state = 39, .external_lex_state = 11}, - [1671] = {.lex_state = 39, .external_lex_state = 11}, - [1672] = {.lex_state = 39, .external_lex_state = 12}, + [1659] = {.lex_state = 39, .external_lex_state = 10}, + [1660] = {.lex_state = 39, .external_lex_state = 12}, + [1661] = {.lex_state = 39, .external_lex_state = 12}, + [1662] = {.lex_state = 39, .external_lex_state = 8}, + [1663] = {.lex_state = 39, .external_lex_state = 8}, + [1664] = {.lex_state = 39, .external_lex_state = 8}, + [1665] = {.lex_state = 39, .external_lex_state = 8}, + [1666] = {.lex_state = 39, .external_lex_state = 12}, + [1667] = {.lex_state = 39, .external_lex_state = 2}, + [1668] = {.lex_state = 39, .external_lex_state = 11}, + [1669] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 12}, - [1674] = {.lex_state = 39, .external_lex_state = 8}, - [1675] = {.lex_state = 39, .external_lex_state = 8}, + [1674] = {.lex_state = 39, .external_lex_state = 12}, + [1675] = {.lex_state = 39, .external_lex_state = 12}, [1676] = {.lex_state = 39, .external_lex_state = 2}, - [1677] = {.lex_state = 39, .external_lex_state = 2}, - [1678] = {.lex_state = 39, .external_lex_state = 8}, + [1677] = {.lex_state = 39, .external_lex_state = 9}, + [1678] = {.lex_state = 39, .external_lex_state = 2}, [1679] = {.lex_state = 39, .external_lex_state = 12}, - [1680] = {.lex_state = 39, .external_lex_state = 8}, + [1680] = {.lex_state = 39, .external_lex_state = 2}, [1681] = {.lex_state = 39, .external_lex_state = 11}, - [1682] = {.lex_state = 39, .external_lex_state = 2}, - [1683] = {.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}, + [1685] = {.lex_state = 39, .external_lex_state = 12}, [1686] = {.lex_state = 39, .external_lex_state = 11}, [1687] = {.lex_state = 39, .external_lex_state = 11}, - [1688] = {.lex_state = 3, .external_lex_state = 10}, - [1689] = {.lex_state = 3, .external_lex_state = 10}, + [1688] = {.lex_state = 39, .external_lex_state = 11}, + [1689] = {.lex_state = 39, .external_lex_state = 8}, [1690] = {.lex_state = 39, .external_lex_state = 12}, - [1691] = {.lex_state = 39, .external_lex_state = 12}, - [1692] = {.lex_state = 3, .external_lex_state = 10}, - [1693] = {.lex_state = 39, .external_lex_state = 11}, - [1694] = {.lex_state = 39, .external_lex_state = 12}, - [1695] = {.lex_state = 39, .external_lex_state = 12}, + [1691] = {.lex_state = 39, .external_lex_state = 8}, + [1692] = {.lex_state = 39, .external_lex_state = 11}, + [1693] = {.lex_state = 3, .external_lex_state = 10}, + [1694] = {.lex_state = 39, .external_lex_state = 3}, + [1695] = {.lex_state = 39, .external_lex_state = 8}, [1696] = {.lex_state = 39, .external_lex_state = 12}, - [1697] = {.lex_state = 3, .external_lex_state = 10}, - [1698] = {.lex_state = 39, .external_lex_state = 8}, - [1699] = {.lex_state = 39, .external_lex_state = 12}, - [1700] = {.lex_state = 39, .external_lex_state = 11}, - [1701] = {.lex_state = 3, .external_lex_state = 10}, - [1702] = {.lex_state = 39, .external_lex_state = 3}, - [1703] = {.lex_state = 3, .external_lex_state = 10}, - [1704] = {.lex_state = 3, .external_lex_state = 10}, - [1705] = {.lex_state = 39, .external_lex_state = 12}, - [1706] = {.lex_state = 39, .external_lex_state = 2}, - [1707] = {.lex_state = 39, .external_lex_state = 8}, - [1708] = {.lex_state = 39, .external_lex_state = 9}, - [1709] = {.lex_state = 39, .external_lex_state = 9}, - [1710] = {.lex_state = 3, .external_lex_state = 10}, - [1711] = {.lex_state = 3, .external_lex_state = 10}, - [1712] = {.lex_state = 39, .external_lex_state = 9}, - [1713] = {.lex_state = 39, .external_lex_state = 2}, + [1697] = {.lex_state = 39, .external_lex_state = 3}, + [1698] = {.lex_state = 39, .external_lex_state = 11}, + [1699] = {.lex_state = 39, .external_lex_state = 11}, + [1700] = {.lex_state = 39, .external_lex_state = 3}, + [1701] = {.lex_state = 39, .external_lex_state = 3}, + [1702] = {.lex_state = 39, .external_lex_state = 2}, + [1703] = {.lex_state = 39, .external_lex_state = 12}, + [1704] = {.lex_state = 39, .external_lex_state = 8}, + [1705] = {.lex_state = 39, .external_lex_state = 11}, + [1706] = {.lex_state = 39, .external_lex_state = 3}, + [1707] = {.lex_state = 39, .external_lex_state = 3}, + [1708] = {.lex_state = 39, .external_lex_state = 3}, + [1709] = {.lex_state = 39, .external_lex_state = 8}, + [1710] = {.lex_state = 39, .external_lex_state = 11}, + [1711] = {.lex_state = 39, .external_lex_state = 3}, + [1712] = {.lex_state = 39, .external_lex_state = 12}, + [1713] = {.lex_state = 39, .external_lex_state = 3}, [1714] = {.lex_state = 39, .external_lex_state = 2}, - [1715] = {.lex_state = 39, .external_lex_state = 9}, + [1715] = {.lex_state = 39, .external_lex_state = 3}, [1716] = {.lex_state = 39, .external_lex_state = 3}, - [1717] = {.lex_state = 39, .external_lex_state = 11}, - [1718] = {.lex_state = 39, .external_lex_state = 9}, - [1719] = {.lex_state = 39, .external_lex_state = 12}, - [1720] = {.lex_state = 39, .external_lex_state = 12}, - [1721] = {.lex_state = 39, .external_lex_state = 2}, - [1722] = {.lex_state = 39, .external_lex_state = 9}, + [1717] = {.lex_state = 39, .external_lex_state = 3}, + [1718] = {.lex_state = 3, .external_lex_state = 10}, + [1719] = {.lex_state = 3, .external_lex_state = 10}, + [1720] = {.lex_state = 39, .external_lex_state = 11}, + [1721] = {.lex_state = 3, .external_lex_state = 10}, + [1722] = {.lex_state = 39, .external_lex_state = 3}, [1723] = {.lex_state = 39, .external_lex_state = 2}, [1724] = {.lex_state = 39, .external_lex_state = 11}, - [1725] = {.lex_state = 3, .external_lex_state = 10}, - [1726] = {.lex_state = 39, .external_lex_state = 8}, - [1727] = {.lex_state = 39, .external_lex_state = 2}, - [1728] = {.lex_state = 39, .external_lex_state = 3}, + [1725] = {.lex_state = 39, .external_lex_state = 8}, + [1726] = {.lex_state = 3, .external_lex_state = 10}, + [1727] = {.lex_state = 3, .external_lex_state = 10}, + [1728] = {.lex_state = 3, .external_lex_state = 10}, [1729] = {.lex_state = 39, .external_lex_state = 11}, - [1730] = {.lex_state = 39, .external_lex_state = 2}, - [1731] = {.lex_state = 39, .external_lex_state = 2}, - [1732] = {.lex_state = 39, .external_lex_state = 2}, - [1733] = {.lex_state = 39, .external_lex_state = 3}, - [1734] = {.lex_state = 39, .external_lex_state = 12}, - [1735] = {.lex_state = 39, .external_lex_state = 8}, + [1730] = {.lex_state = 3, .external_lex_state = 10}, + [1731] = {.lex_state = 39, .external_lex_state = 3}, + [1732] = {.lex_state = 39, .external_lex_state = 12}, + [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 = 3}, - [1737] = {.lex_state = 3, .external_lex_state = 10}, - [1738] = {.lex_state = 39, .external_lex_state = 8}, - [1739] = {.lex_state = 39, .external_lex_state = 8}, - [1740] = {.lex_state = 39, .external_lex_state = 11}, + [1737] = {.lex_state = 39, .external_lex_state = 8}, + [1738] = {.lex_state = 39, .external_lex_state = 3}, + [1739] = {.lex_state = 39, .external_lex_state = 2}, + [1740] = {.lex_state = 39, .external_lex_state = 8}, [1741] = {.lex_state = 39, .external_lex_state = 11}, - [1742] = {.lex_state = 39, .external_lex_state = 11}, - [1743] = {.lex_state = 39, .external_lex_state = 2}, - [1744] = {.lex_state = 39, .external_lex_state = 3}, - [1745] = {.lex_state = 39, .external_lex_state = 10}, - [1746] = {.lex_state = 39, .external_lex_state = 3}, - [1747] = {.lex_state = 39, .external_lex_state = 9}, - [1748] = {.lex_state = 39, .external_lex_state = 2}, - [1749] = {.lex_state = 39, .external_lex_state = 8}, - [1750] = {.lex_state = 39, .external_lex_state = 12}, + [1742] = {.lex_state = 39, .external_lex_state = 2}, + [1743] = {.lex_state = 3, .external_lex_state = 10}, + [1744] = {.lex_state = 3, .external_lex_state = 10}, + [1745] = {.lex_state = 39, .external_lex_state = 2}, + [1746] = {.lex_state = 39, .external_lex_state = 11}, + [1747] = {.lex_state = 39, .external_lex_state = 12}, + [1748] = {.lex_state = 39, .external_lex_state = 11}, + [1749] = {.lex_state = 39, .external_lex_state = 3}, + [1750] = {.lex_state = 39, .external_lex_state = 3}, [1751] = {.lex_state = 39, .external_lex_state = 3}, - [1752] = {.lex_state = 39, .external_lex_state = 8}, + [1752] = {.lex_state = 39, .external_lex_state = 3}, [1753] = {.lex_state = 39, .external_lex_state = 11}, [1754] = {.lex_state = 39, .external_lex_state = 2}, [1755] = {.lex_state = 39, .external_lex_state = 8}, - [1756] = {.lex_state = 39, .external_lex_state = 2}, - [1757] = {.lex_state = 39, .external_lex_state = 3}, + [1756] = {.lex_state = 39, .external_lex_state = 11}, + [1757] = {.lex_state = 39, .external_lex_state = 11}, [1758] = {.lex_state = 39, .external_lex_state = 11}, - [1759] = {.lex_state = 39, .external_lex_state = 3}, - [1760] = {.lex_state = 39, .external_lex_state = 3}, - [1761] = {.lex_state = 39, .external_lex_state = 11}, - [1762] = {.lex_state = 3, .external_lex_state = 10}, - [1763] = {.lex_state = 39, .external_lex_state = 3}, - [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 = 3}, - [1768] = {.lex_state = 39, .external_lex_state = 8}, - [1769] = {.lex_state = 39, .external_lex_state = 12}, - [1770] = {.lex_state = 39, .external_lex_state = 8}, - [1771] = {.lex_state = 39, .external_lex_state = 3}, - [1772] = {.lex_state = 39, .external_lex_state = 11}, - [1773] = {.lex_state = 39, .external_lex_state = 3}, - [1774] = {.lex_state = 39, .external_lex_state = 3}, - [1775] = {.lex_state = 39, .external_lex_state = 3}, - [1776] = {.lex_state = 3, .external_lex_state = 10}, - [1777] = {.lex_state = 3, .external_lex_state = 10}, - [1778] = {.lex_state = 3, .external_lex_state = 10}, - [1779] = {.lex_state = 3, .external_lex_state = 10}, + [1759] = {.lex_state = 39, .external_lex_state = 11}, + [1760] = {.lex_state = 39, .external_lex_state = 11}, + [1761] = {.lex_state = 39, .external_lex_state = 8}, + [1762] = {.lex_state = 39, .external_lex_state = 12}, + [1763] = {.lex_state = 39, .external_lex_state = 11}, + [1764] = {.lex_state = 39, .external_lex_state = 3}, + [1765] = {.lex_state = 39, .external_lex_state = 9}, + [1766] = {.lex_state = 39, .external_lex_state = 8}, + [1767] = {.lex_state = 39, .external_lex_state = 11}, + [1768] = {.lex_state = 39, .external_lex_state = 12}, + [1769] = {.lex_state = 39, .external_lex_state = 8}, + [1770] = {.lex_state = 39, .external_lex_state = 2}, + [1771] = {.lex_state = 3, .external_lex_state = 10}, + [1772] = {.lex_state = 39, .external_lex_state = 2}, + [1773] = {.lex_state = 39, .external_lex_state = 11}, + [1774] = {.lex_state = 3, .external_lex_state = 10}, + [1775] = {.lex_state = 39, .external_lex_state = 8}, + [1776] = {.lex_state = 39, .external_lex_state = 8}, + [1777] = {.lex_state = 39, .external_lex_state = 8}, + [1778] = {.lex_state = 39, .external_lex_state = 11}, + [1779] = {.lex_state = 39, .external_lex_state = 12}, [1780] = {.lex_state = 39, .external_lex_state = 12}, - [1781] = {.lex_state = 39, .external_lex_state = 3}, - [1782] = {.lex_state = 39, .external_lex_state = 8}, - [1783] = {.lex_state = 39, .external_lex_state = 8}, - [1784] = {.lex_state = 39, .external_lex_state = 8}, - [1785] = {.lex_state = 39, .external_lex_state = 11}, - [1786] = {.lex_state = 39, .external_lex_state = 3}, - [1787] = {.lex_state = 39, .external_lex_state = 8}, - [1788] = {.lex_state = 39, .external_lex_state = 11}, - [1789] = {.lex_state = 39, .external_lex_state = 11}, + [1781] = {.lex_state = 39, .external_lex_state = 12}, + [1782] = {.lex_state = 39, .external_lex_state = 11}, + [1783] = {.lex_state = 39, .external_lex_state = 3}, + [1784] = {.lex_state = 39, .external_lex_state = 11}, + [1785] = {.lex_state = 39, .external_lex_state = 2}, + [1786] = {.lex_state = 39, .external_lex_state = 11}, + [1787] = {.lex_state = 39, .external_lex_state = 9}, + [1788] = {.lex_state = 39, .external_lex_state = 9}, + [1789] = {.lex_state = 39, .external_lex_state = 3}, [1790] = {.lex_state = 39, .external_lex_state = 3}, - [1791] = {.lex_state = 39, .external_lex_state = 8}, + [1791] = {.lex_state = 39, .external_lex_state = 11}, [1792] = {.lex_state = 39, .external_lex_state = 11}, [1793] = {.lex_state = 39, .external_lex_state = 11}, [1794] = {.lex_state = 39, .external_lex_state = 11}, - [1795] = {.lex_state = 39, .external_lex_state = 3}, - [1796] = {.lex_state = 39, .external_lex_state = 3}, - [1797] = {.lex_state = 39, .external_lex_state = 2}, + [1795] = {.lex_state = 39, .external_lex_state = 8}, + [1796] = {.lex_state = 39, .external_lex_state = 11}, + [1797] = {.lex_state = 39, .external_lex_state = 11}, [1798] = {.lex_state = 39, .external_lex_state = 11}, - [1799] = {.lex_state = 39, .external_lex_state = 11}, - [1800] = {.lex_state = 39, .external_lex_state = 2}, - [1801] = {.lex_state = 39, .external_lex_state = 3}, + [1799] = {.lex_state = 3, .external_lex_state = 10}, + [1800] = {.lex_state = 39, .external_lex_state = 12}, + [1801] = {.lex_state = 39, .external_lex_state = 12}, [1802] = {.lex_state = 39, .external_lex_state = 9}, - [1803] = {.lex_state = 39, .external_lex_state = 2}, - [1804] = {.lex_state = 39, .external_lex_state = 3}, + [1803] = {.lex_state = 39, .external_lex_state = 12}, + [1804] = {.lex_state = 39, .external_lex_state = 9}, [1805] = {.lex_state = 39, .external_lex_state = 12}, - [1806] = {.lex_state = 39, .external_lex_state = 12}, + [1806] = {.lex_state = 3, .external_lex_state = 10}, [1807] = {.lex_state = 3, .external_lex_state = 10}, [1808] = {.lex_state = 3, .external_lex_state = 10}, - [1809] = {.lex_state = 3, .external_lex_state = 10}, - [1810] = {.lex_state = 39, .external_lex_state = 9}, - [1811] = {.lex_state = 39, .external_lex_state = 8}, - [1812] = {.lex_state = 39, .external_lex_state = 8}, - [1813] = {.lex_state = 39, .external_lex_state = 8}, - [1814] = {.lex_state = 39, .external_lex_state = 12}, - [1815] = {.lex_state = 3, .external_lex_state = 10}, - [1816] = {.lex_state = 3, .external_lex_state = 10}, + [1809] = {.lex_state = 39, .external_lex_state = 12}, + [1810] = {.lex_state = 39, .external_lex_state = 2}, + [1811] = {.lex_state = 39, .external_lex_state = 9}, + [1812] = {.lex_state = 39, .external_lex_state = 2}, + [1813] = {.lex_state = 39, .external_lex_state = 12}, + [1814] = {.lex_state = 39, .external_lex_state = 11}, + [1815] = {.lex_state = 39, .external_lex_state = 11}, + [1816] = {.lex_state = 39, .external_lex_state = 3}, [1817] = {.lex_state = 3, .external_lex_state = 10}, - [1818] = {.lex_state = 39, .external_lex_state = 8}, - [1819] = {.lex_state = 39, .external_lex_state = 8}, - [1820] = {.lex_state = 39, .external_lex_state = 8}, + [1818] = {.lex_state = 39, .external_lex_state = 12}, + [1819] = {.lex_state = 39, .external_lex_state = 11}, + [1820] = {.lex_state = 39, .external_lex_state = 11}, [1821] = {.lex_state = 39, .external_lex_state = 8}, - [1822] = {.lex_state = 39, .external_lex_state = 8}, - [1823] = {.lex_state = 39, .external_lex_state = 8}, - [1824] = {.lex_state = 39, .external_lex_state = 8}, - [1825] = {.lex_state = 39, .external_lex_state = 12}, - [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 = 3, .external_lex_state = 10}, - [1831] = {.lex_state = 3, .external_lex_state = 10}, - [1832] = {.lex_state = 3, .external_lex_state = 10}, - [1833] = {.lex_state = 39, .external_lex_state = 8}, - [1834] = {.lex_state = 39, .external_lex_state = 8}, - [1835] = {.lex_state = 3, .external_lex_state = 10}, - [1836] = {.lex_state = 39, .external_lex_state = 8}, + [1822] = {.lex_state = 3, .external_lex_state = 10}, + [1823] = {.lex_state = 3, .external_lex_state = 10}, + [1824] = {.lex_state = 39, .external_lex_state = 11}, + [1825] = {.lex_state = 39, .external_lex_state = 11}, + [1826] = {.lex_state = 39, .external_lex_state = 11}, + [1827] = {.lex_state = 39, .external_lex_state = 12}, + [1828] = {.lex_state = 39, .external_lex_state = 8}, + [1829] = {.lex_state = 39, .external_lex_state = 8}, + [1830] = {.lex_state = 39, .external_lex_state = 11}, + [1831] = {.lex_state = 39, .external_lex_state = 8}, + [1832] = {.lex_state = 39, .external_lex_state = 2}, + [1833] = {.lex_state = 39, .external_lex_state = 11}, + [1834] = {.lex_state = 39, .external_lex_state = 11}, + [1835] = {.lex_state = 39, .external_lex_state = 8}, + [1836] = {.lex_state = 39, .external_lex_state = 11}, [1837] = {.lex_state = 39, .external_lex_state = 8}, [1838] = {.lex_state = 3, .external_lex_state = 10}, [1839] = {.lex_state = 3, .external_lex_state = 10}, [1840] = {.lex_state = 3, .external_lex_state = 10}, - [1841] = {.lex_state = 3, .external_lex_state = 10}, + [1841] = {.lex_state = 39, .external_lex_state = 8}, [1842] = {.lex_state = 3, .external_lex_state = 10}, [1843] = {.lex_state = 3, .external_lex_state = 10}, - [1844] = {.lex_state = 3, .external_lex_state = 10}, - [1845] = {.lex_state = 3, .external_lex_state = 10}, - [1846] = {.lex_state = 3, .external_lex_state = 10}, - [1847] = {.lex_state = 39, .external_lex_state = 8}, - [1848] = {.lex_state = 39, .external_lex_state = 8}, + [1844] = {.lex_state = 39, .external_lex_state = 8}, + [1845] = {.lex_state = 39, .external_lex_state = 12}, + [1846] = {.lex_state = 39, .external_lex_state = 12}, + [1847] = {.lex_state = 3, .external_lex_state = 10}, + [1848] = {.lex_state = 3, .external_lex_state = 10}, [1849] = {.lex_state = 39, .external_lex_state = 8}, [1850] = {.lex_state = 3, .external_lex_state = 10}, [1851] = {.lex_state = 3, .external_lex_state = 10}, - [1852] = {.lex_state = 39, .external_lex_state = 12}, - [1853] = {.lex_state = 39, .external_lex_state = 12}, - [1854] = {.lex_state = 39, .external_lex_state = 12}, - [1855] = {.lex_state = 3, .external_lex_state = 10}, - [1856] = {.lex_state = 39, .external_lex_state = 8}, - [1857] = {.lex_state = 39, .external_lex_state = 8}, - [1858] = {.lex_state = 39, .external_lex_state = 8}, - [1859] = {.lex_state = 39, .external_lex_state = 12}, - [1860] = {.lex_state = 39, .external_lex_state = 8}, + [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}, + [1856] = {.lex_state = 3, .external_lex_state = 10}, + [1857] = {.lex_state = 3, .external_lex_state = 10}, + [1858] = {.lex_state = 3, .external_lex_state = 10}, + [1859] = {.lex_state = 3, .external_lex_state = 10}, + [1860] = {.lex_state = 3, .external_lex_state = 10}, [1861] = {.lex_state = 39, .external_lex_state = 8}, [1862] = {.lex_state = 39, .external_lex_state = 8}, - [1863] = {.lex_state = 3, .external_lex_state = 10}, + [1863] = {.lex_state = 39, .external_lex_state = 8}, [1864] = {.lex_state = 3, .external_lex_state = 10}, - [1865] = {.lex_state = 3, .external_lex_state = 10}, + [1865] = {.lex_state = 39, .external_lex_state = 8}, [1866] = {.lex_state = 39, .external_lex_state = 8}, - [1867] = {.lex_state = 3, .external_lex_state = 10}, - [1868] = {.lex_state = 39, .external_lex_state = 12}, + [1867] = {.lex_state = 39, .external_lex_state = 12}, + [1868] = {.lex_state = 39, .external_lex_state = 8}, [1869] = {.lex_state = 39, .external_lex_state = 12}, - [1870] = {.lex_state = 39, .external_lex_state = 8}, - [1871] = {.lex_state = 39, .external_lex_state = 12}, - [1872] = {.lex_state = 39, .external_lex_state = 9}, - [1873] = {.lex_state = 39, .external_lex_state = 8}, - [1874] = {.lex_state = 3, .external_lex_state = 10}, - [1875] = {.lex_state = 39, .external_lex_state = 8}, - [1876] = {.lex_state = 39, .external_lex_state = 8}, - [1877] = {.lex_state = 39, .external_lex_state = 8}, - [1878] = {.lex_state = 39, .external_lex_state = 8}, - [1879] = {.lex_state = 39, .external_lex_state = 8}, - [1880] = {.lex_state = 39, .external_lex_state = 12}, - [1881] = {.lex_state = 3, .external_lex_state = 10}, - [1882] = {.lex_state = 3, .external_lex_state = 10}, - [1883] = {.lex_state = 39, .external_lex_state = 8}, - [1884] = {.lex_state = 39, .external_lex_state = 8}, + [1870] = {.lex_state = 3, .external_lex_state = 10}, + [1871] = {.lex_state = 39, .external_lex_state = 8}, + [1872] = {.lex_state = 3, .external_lex_state = 10}, + [1873] = {.lex_state = 39, .external_lex_state = 12}, + [1874] = {.lex_state = 39, .external_lex_state = 8}, + [1875] = {.lex_state = 39, .external_lex_state = 12}, + [1876] = {.lex_state = 39, .external_lex_state = 12}, + [1877] = {.lex_state = 39, .external_lex_state = 12}, + [1878] = {.lex_state = 3, .external_lex_state = 10}, + [1879] = {.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 = 39, .external_lex_state = 8}, + [1883] = {.lex_state = 3, .external_lex_state = 10}, + [1884] = {.lex_state = 3, .external_lex_state = 10}, [1885] = {.lex_state = 39, .external_lex_state = 8}, - [1886] = {.lex_state = 39, .external_lex_state = 8}, + [1886] = {.lex_state = 3, .external_lex_state = 10}, [1887] = {.lex_state = 3, .external_lex_state = 10}, [1888] = {.lex_state = 39, .external_lex_state = 12}, [1889] = {.lex_state = 39, .external_lex_state = 8}, - [1890] = {.lex_state = 39, .external_lex_state = 8}, - [1891] = {.lex_state = 39, .external_lex_state = 8}, - [1892] = {.lex_state = 39, .external_lex_state = 12}, + [1890] = {.lex_state = 3, .external_lex_state = 10}, + [1891] = {.lex_state = 3, .external_lex_state = 10}, + [1892] = {.lex_state = 3, .external_lex_state = 10}, [1893] = {.lex_state = 39, .external_lex_state = 8}, - [1894] = {.lex_state = 39, .external_lex_state = 8}, - [1895] = {.lex_state = 39, .external_lex_state = 12}, - [1896] = {.lex_state = 39, .external_lex_state = 8}, + [1894] = {.lex_state = 39, .external_lex_state = 12}, + [1895] = {.lex_state = 39, .external_lex_state = 8}, + [1896] = {.lex_state = 3, .external_lex_state = 10}, [1897] = {.lex_state = 3, .external_lex_state = 10}, [1898] = {.lex_state = 39, .external_lex_state = 8}, - [1899] = {.lex_state = 3, .external_lex_state = 10}, + [1899] = {.lex_state = 39, .external_lex_state = 8}, [1900] = {.lex_state = 3, .external_lex_state = 10}, [1901] = {.lex_state = 3, .external_lex_state = 10}, - [1902] = {.lex_state = 3, .external_lex_state = 10}, - [1903] = {.lex_state = 39, .external_lex_state = 12}, + [1902] = {.lex_state = 39, .external_lex_state = 8}, + [1903] = {.lex_state = 39, .external_lex_state = 8}, [1904] = {.lex_state = 3, .external_lex_state = 10}, - [1905] = {.lex_state = 3, .external_lex_state = 10}, - [1906] = {.lex_state = 3, .external_lex_state = 10}, - [1907] = {.lex_state = 39, .external_lex_state = 8}, - [1908] = {.lex_state = 3, .external_lex_state = 10}, - [1909] = {.lex_state = 3, .external_lex_state = 10}, - [1910] = {.lex_state = 39, .external_lex_state = 12}, - [1911] = {.lex_state = 39, .external_lex_state = 8}, - [1912] = {.lex_state = 3, .external_lex_state = 10}, - [1913] = {.lex_state = 3, .external_lex_state = 10}, + [1905] = {.lex_state = 39, .external_lex_state = 12}, + [1906] = {.lex_state = 39, .external_lex_state = 8}, + [1907] = {.lex_state = 39, .external_lex_state = 12}, + [1908] = {.lex_state = 39, .external_lex_state = 8}, + [1909] = {.lex_state = 39, .external_lex_state = 12}, + [1910] = {.lex_state = 3, .external_lex_state = 10}, + [1911] = {.lex_state = 39, .external_lex_state = 12}, + [1912] = {.lex_state = 39, .external_lex_state = 8}, + [1913] = {.lex_state = 39, .external_lex_state = 12}, [1914] = {.lex_state = 39, .external_lex_state = 8}, - [1915] = {.lex_state = 39, .external_lex_state = 8}, - [1916] = {.lex_state = 39, .external_lex_state = 9}, - [1917] = {.lex_state = 3, .external_lex_state = 10}, - [1918] = {.lex_state = 3, .external_lex_state = 10}, - [1919] = {.lex_state = 39, .external_lex_state = 8}, - [1920] = {.lex_state = 39, .external_lex_state = 12}, + [1915] = {.lex_state = 39, .external_lex_state = 12}, + [1916] = {.lex_state = 39, .external_lex_state = 8}, + [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 = 9}, [1921] = {.lex_state = 39, .external_lex_state = 12}, - [1922] = {.lex_state = 39, .external_lex_state = 12}, - [1923] = {.lex_state = 3, .external_lex_state = 10}, + [1922] = {.lex_state = 3, .external_lex_state = 10}, + [1923] = {.lex_state = 39, .external_lex_state = 12}, [1924] = {.lex_state = 39, .external_lex_state = 8}, [1925] = {.lex_state = 3, .external_lex_state = 10}, - [1926] = {.lex_state = 39, .external_lex_state = 12}, - [1927] = {.lex_state = 39, .external_lex_state = 12}, - [1928] = {.lex_state = 39, .external_lex_state = 8}, - [1929] = {.lex_state = 3, .external_lex_state = 10}, - [1930] = {.lex_state = 39, .external_lex_state = 8}, - [1931] = {.lex_state = 3, .external_lex_state = 10}, - [1932] = {.lex_state = 3, .external_lex_state = 10}, + [1926] = {.lex_state = 3, .external_lex_state = 10}, + [1927] = {.lex_state = 3, .external_lex_state = 10}, + [1928] = {.lex_state = 39, .external_lex_state = 9}, + [1929] = {.lex_state = 39, .external_lex_state = 9}, + [1930] = {.lex_state = 39, .external_lex_state = 12}, + [1931] = {.lex_state = 39, .external_lex_state = 8}, + [1932] = {.lex_state = 39, .external_lex_state = 12}, [1933] = {.lex_state = 3, .external_lex_state = 10}, [1934] = {.lex_state = 39, .external_lex_state = 8}, - [1935] = {.lex_state = 39, .external_lex_state = 8}, - [1936] = {.lex_state = 39, .external_lex_state = 12}, - [1937] = {.lex_state = 39, .external_lex_state = 12}, - [1938] = {.lex_state = 39, .external_lex_state = 9}, - [1939] = {.lex_state = 39, .external_lex_state = 12}, - [1940] = {.lex_state = 39, .external_lex_state = 5}, - [1941] = {.lex_state = 39, .external_lex_state = 12}, - [1942] = {.lex_state = 39, .external_lex_state = 12}, - [1943] = {.lex_state = 39, .external_lex_state = 12}, - [1944] = {.lex_state = 39, .external_lex_state = 12}, - [1945] = {.lex_state = 39, .external_lex_state = 12}, - [1946] = {.lex_state = 39, .external_lex_state = 9}, - [1947] = {.lex_state = 39, .external_lex_state = 12}, - [1948] = {.lex_state = 39, .external_lex_state = 12}, - [1949] = {.lex_state = 39, .external_lex_state = 12}, - [1950] = {.lex_state = 39, .external_lex_state = 12}, - [1951] = {.lex_state = 39, .external_lex_state = 9}, - [1952] = {.lex_state = 39, .external_lex_state = 9}, - [1953] = {.lex_state = 39, .external_lex_state = 12}, - [1954] = {.lex_state = 39, .external_lex_state = 12}, + [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 = 39, .external_lex_state = 8}, + [1939] = {.lex_state = 3, .external_lex_state = 10}, + [1940] = {.lex_state = 39, .external_lex_state = 12}, + [1941] = {.lex_state = 39, .external_lex_state = 8}, + [1942] = {.lex_state = 3, .external_lex_state = 10}, + [1943] = {.lex_state = 39, .external_lex_state = 8}, + [1944] = {.lex_state = 39, .external_lex_state = 8}, + [1945] = {.lex_state = 39, .external_lex_state = 8}, + [1946] = {.lex_state = 39, .external_lex_state = 8}, + [1947] = {.lex_state = 3, .external_lex_state = 10}, + [1948] = {.lex_state = 3, .external_lex_state = 10}, + [1949] = {.lex_state = 39, .external_lex_state = 8}, + [1950] = {.lex_state = 3, .external_lex_state = 10}, + [1951] = {.lex_state = 39, .external_lex_state = 8}, + [1952] = {.lex_state = 39, .external_lex_state = 8}, + [1953] = {.lex_state = 39, .external_lex_state = 8}, + [1954] = {.lex_state = 39, .external_lex_state = 8}, [1955] = {.lex_state = 39, .external_lex_state = 12}, - [1956] = {.lex_state = 39, .external_lex_state = 12}, - [1957] = {.lex_state = 39, .external_lex_state = 12}, - [1958] = {.lex_state = 39, .external_lex_state = 12}, - [1959] = {.lex_state = 39, .external_lex_state = 5}, - [1960] = {.lex_state = 39, .external_lex_state = 5}, - [1961] = {.lex_state = 39, .external_lex_state = 9}, - [1962] = {.lex_state = 39, .external_lex_state = 9}, - [1963] = {.lex_state = 39, .external_lex_state = 5}, + [1956] = {.lex_state = 39, .external_lex_state = 8}, + [1957] = {.lex_state = 3, .external_lex_state = 10}, + [1958] = {.lex_state = 39, .external_lex_state = 8}, + [1959] = {.lex_state = 39, .external_lex_state = 12}, + [1960] = {.lex_state = 39, .external_lex_state = 12}, + [1961] = {.lex_state = 39, .external_lex_state = 8}, + [1962] = {.lex_state = 39, .external_lex_state = 8}, + [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 = 8}, - [1968] = {.lex_state = 39, .external_lex_state = 12}, + [1967] = {.lex_state = 39, .external_lex_state = 12}, + [1968] = {.lex_state = 39, .external_lex_state = 9}, [1969] = {.lex_state = 39, .external_lex_state = 12}, [1970] = {.lex_state = 39, .external_lex_state = 9}, - [1971] = {.lex_state = 39, .external_lex_state = 5}, + [1971] = {.lex_state = 39, .external_lex_state = 12}, [1972] = {.lex_state = 39, .external_lex_state = 9}, [1973] = {.lex_state = 39, .external_lex_state = 12}, - [1974] = {.lex_state = 39, .external_lex_state = 12}, + [1974] = {.lex_state = 39, .external_lex_state = 9}, [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}, + [1978] = {.lex_state = 39, .external_lex_state = 9}, [1979] = {.lex_state = 39, .external_lex_state = 12}, - [1980] = {.lex_state = 39, .external_lex_state = 12}, + [1980] = {.lex_state = 39, .external_lex_state = 9}, [1981] = {.lex_state = 39, .external_lex_state = 12}, - [1982] = {.lex_state = 39, .external_lex_state = 9}, + [1982] = {.lex_state = 39, .external_lex_state = 12}, [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 = 5}, + [1986] = {.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}, + [1990] = {.lex_state = 39, .external_lex_state = 9}, [1991] = {.lex_state = 39, .external_lex_state = 12}, [1992] = {.lex_state = 39, .external_lex_state = 12}, - [1993] = {.lex_state = 39, .external_lex_state = 5}, - [1994] = {.lex_state = 39, .external_lex_state = 12}, - [1995] = {.lex_state = 39, .external_lex_state = 9}, - [1996] = {.lex_state = 39, .external_lex_state = 9}, + [1993] = {.lex_state = 39, .external_lex_state = 12}, + [1994] = {.lex_state = 39, .external_lex_state = 9}, + [1995] = {.lex_state = 39, .external_lex_state = 5}, + [1996] = {.lex_state = 39, .external_lex_state = 12}, [1997] = {.lex_state = 39, .external_lex_state = 12}, [1998] = {.lex_state = 39, .external_lex_state = 12}, - [1999] = {.lex_state = 39, .external_lex_state = 12}, - [2000] = {.lex_state = 39, .external_lex_state = 9}, + [1999] = {.lex_state = 39, .external_lex_state = 9}, + [2000] = {.lex_state = 39, .external_lex_state = 5}, [2001] = {.lex_state = 39, .external_lex_state = 9}, - [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 = 9}, - [2006] = {.lex_state = 39, .external_lex_state = 9}, + [2002] = {.lex_state = 39, .external_lex_state = 12}, + [2003] = {.lex_state = 39, .external_lex_state = 8}, + [2004] = {.lex_state = 39, .external_lex_state = 9}, + [2005] = {.lex_state = 39, .external_lex_state = 12}, + [2006] = {.lex_state = 39, .external_lex_state = 5}, [2007] = {.lex_state = 39, .external_lex_state = 9}, [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}, + [2010] = {.lex_state = 39, .external_lex_state = 12}, + [2011] = {.lex_state = 39, .external_lex_state = 12}, [2012] = {.lex_state = 39, .external_lex_state = 12}, - [2013] = {.lex_state = 39, .external_lex_state = 12}, + [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}, + [2016] = {.lex_state = 39, .external_lex_state = 12}, [2017] = {.lex_state = 39, .external_lex_state = 12}, [2018] = {.lex_state = 39, .external_lex_state = 12}, - [2019] = {.lex_state = 39, .external_lex_state = 9}, - [2020] = {.lex_state = 39, .external_lex_state = 9}, - [2021] = {.lex_state = 39, .external_lex_state = 9}, - [2022] = {.lex_state = 39, .external_lex_state = 9}, - [2023] = {.lex_state = 39, .external_lex_state = 9}, + [2019] = {.lex_state = 39, .external_lex_state = 12}, + [2020] = {.lex_state = 39, .external_lex_state = 12}, + [2021] = {.lex_state = 39, .external_lex_state = 12}, + [2022] = {.lex_state = 39, .external_lex_state = 12}, + [2023] = {.lex_state = 39, .external_lex_state = 12}, [2024] = {.lex_state = 39, .external_lex_state = 9}, - [2025] = {.lex_state = 39, .external_lex_state = 9}, - [2026] = {.lex_state = 39, .external_lex_state = 9}, + [2025] = {.lex_state = 39, .external_lex_state = 12}, + [2026] = {.lex_state = 39, .external_lex_state = 12}, [2027] = {.lex_state = 39, .external_lex_state = 9}, [2028] = {.lex_state = 39, .external_lex_state = 5}, - [2029] = {.lex_state = 39, .external_lex_state = 5}, - [2030] = {.lex_state = 39, .external_lex_state = 6}, - [2031] = {.lex_state = 39, .external_lex_state = 5}, - [2032] = {.lex_state = 39, .external_lex_state = 5}, - [2033] = {.lex_state = 39, .external_lex_state = 7}, - [2034] = {.lex_state = 39, .external_lex_state = 6}, - [2035] = {.lex_state = 39, .external_lex_state = 5}, + [2029] = {.lex_state = 39, .external_lex_state = 12}, + [2030] = {.lex_state = 39, .external_lex_state = 9}, + [2031] = {.lex_state = 39, .external_lex_state = 12}, + [2032] = {.lex_state = 39, .external_lex_state = 12}, + [2033] = {.lex_state = 39, .external_lex_state = 9}, + [2034] = {.lex_state = 39, .external_lex_state = 5}, + [2035] = {.lex_state = 39, .external_lex_state = 9}, [2036] = {.lex_state = 39, .external_lex_state = 5}, - [2037] = {.lex_state = 39, .external_lex_state = 5}, - [2038] = {.lex_state = 39, .external_lex_state = 6}, - [2039] = {.lex_state = 39, .external_lex_state = 7}, - [2040] = {.lex_state = 39, .external_lex_state = 7}, - [2041] = {.lex_state = 39, .external_lex_state = 6}, - [2042] = {.lex_state = 39, .external_lex_state = 2}, - [2043] = {.lex_state = 39, .external_lex_state = 5}, - [2044] = {.lex_state = 39, .external_lex_state = 2}, - [2045] = {.lex_state = 39, .external_lex_state = 5}, - [2046] = {.lex_state = 39, .external_lex_state = 7}, - [2047] = {.lex_state = 39, .external_lex_state = 6}, - [2048] = {.lex_state = 39, .external_lex_state = 5}, - [2049] = {.lex_state = 39, .external_lex_state = 2}, - [2050] = {.lex_state = 39, .external_lex_state = 2}, - [2051] = {.lex_state = 39, .external_lex_state = 7}, - [2052] = {.lex_state = 39, .external_lex_state = 6}, - [2053] = {.lex_state = 39, .external_lex_state = 7}, + [2037] = {.lex_state = 39, .external_lex_state = 12}, + [2038] = {.lex_state = 39, .external_lex_state = 12}, + [2039] = {.lex_state = 39, .external_lex_state = 12}, + [2040] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 9}, + [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 = 8}, + [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 = 5}, [2055] = {.lex_state = 39, .external_lex_state = 5}, - [2056] = {.lex_state = 39, .external_lex_state = 5}, - [2057] = {.lex_state = 39, .external_lex_state = 2}, + [2056] = {.lex_state = 39, .external_lex_state = 6}, + [2057] = {.lex_state = 39, .external_lex_state = 7}, [2058] = {.lex_state = 39, .external_lex_state = 7}, - [2059] = {.lex_state = 39, .external_lex_state = 6}, - [2060] = {.lex_state = 39, .external_lex_state = 2}, - [2061] = {.lex_state = 39, .external_lex_state = 5}, + [2059] = {.lex_state = 39, .external_lex_state = 5}, + [2060] = {.lex_state = 39, .external_lex_state = 5}, + [2061] = {.lex_state = 39, .external_lex_state = 2}, [2062] = {.lex_state = 39, .external_lex_state = 2}, [2063] = {.lex_state = 39, .external_lex_state = 5}, - [2064] = {.lex_state = 39, .external_lex_state = 6}, - [2065] = {.lex_state = 39, .external_lex_state = 7}, + [2064] = {.lex_state = 39, .external_lex_state = 5}, + [2065] = {.lex_state = 39, .external_lex_state = 5}, [2066] = {.lex_state = 39, .external_lex_state = 5}, - [2067] = {.lex_state = 39, .external_lex_state = 7}, - [2068] = {.lex_state = 39, .external_lex_state = 6}, - [2069] = {.lex_state = 39, .external_lex_state = 5}, - [2070] = {.lex_state = 39, .external_lex_state = 7}, - [2071] = {.lex_state = 39, .external_lex_state = 5}, + [2067] = {.lex_state = 39, .external_lex_state = 5}, + [2068] = {.lex_state = 39, .external_lex_state = 5}, + [2069] = {.lex_state = 39, .external_lex_state = 6}, + [2070] = {.lex_state = 39, .external_lex_state = 5}, + [2071] = {.lex_state = 39, .external_lex_state = 2}, [2072] = {.lex_state = 39, .external_lex_state = 7}, - [2073] = {.lex_state = 39, .external_lex_state = 2}, - [2074] = {.lex_state = 39, .external_lex_state = 2}, + [2073] = {.lex_state = 39, .external_lex_state = 6}, + [2074] = {.lex_state = 39, .external_lex_state = 6}, [2075] = {.lex_state = 39, .external_lex_state = 7}, [2076] = {.lex_state = 39, .external_lex_state = 7}, - [2077] = {.lex_state = 39, .external_lex_state = 5}, - [2078] = {.lex_state = 39, .external_lex_state = 2}, - [2079] = {.lex_state = 39, .external_lex_state = 5}, + [2077] = {.lex_state = 39, .external_lex_state = 7}, + [2078] = {.lex_state = 39, .external_lex_state = 7}, + [2079] = {.lex_state = 39, .external_lex_state = 6}, [2080] = {.lex_state = 39, .external_lex_state = 7}, - [2081] = {.lex_state = 39, .external_lex_state = 7}, - [2082] = {.lex_state = 39, .external_lex_state = 2}, - [2083] = {.lex_state = 39, .external_lex_state = 2}, - [2084] = {.lex_state = 39, .external_lex_state = 2}, + [2081] = {.lex_state = 39, .external_lex_state = 6}, + [2082] = {.lex_state = 39, .external_lex_state = 7}, + [2083] = {.lex_state = 39, .external_lex_state = 6}, + [2084] = {.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}, + [2086] = {.lex_state = 39, .external_lex_state = 7}, + [2087] = {.lex_state = 39, .external_lex_state = 6}, + [2088] = {.lex_state = 39, .external_lex_state = 7}, + [2089] = {.lex_state = 39, .external_lex_state = 5}, [2090] = {.lex_state = 39, .external_lex_state = 2}, - [2091] = {.lex_state = 39, .external_lex_state = 10}, - [2092] = {.lex_state = 39, .external_lex_state = 2}, + [2091] = {.lex_state = 39, .external_lex_state = 2}, + [2092] = {.lex_state = 39, .external_lex_state = 5}, [2093] = {.lex_state = 39, .external_lex_state = 2}, [2094] = {.lex_state = 39, .external_lex_state = 2}, - [2095] = {.lex_state = 39, .external_lex_state = 2}, - [2096] = {.lex_state = 39, .external_lex_state = 2}, - [2097] = {.lex_state = 39, .external_lex_state = 2}, + [2095] = {.lex_state = 39, .external_lex_state = 7}, + [2096] = {.lex_state = 39, .external_lex_state = 7}, + [2097] = {.lex_state = 39, .external_lex_state = 5}, [2098] = {.lex_state = 39, .external_lex_state = 2}, [2099] = {.lex_state = 39, .external_lex_state = 2}, - [2100] = {.lex_state = 39, .external_lex_state = 2}, - [2101] = {.lex_state = 39, .external_lex_state = 2}, - [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 = 2}, - [2106] = {.lex_state = 39, .external_lex_state = 2}, - [2107] = {.lex_state = 39, .external_lex_state = 2}, + [2100] = {.lex_state = 39, .external_lex_state = 5}, + [2101] = {.lex_state = 39, .external_lex_state = 5}, + [2102] = {.lex_state = 39, .external_lex_state = 5}, + [2103] = {.lex_state = 39, .external_lex_state = 7}, + [2104] = {.lex_state = 39, .external_lex_state = 5}, + [2105] = {.lex_state = 39, .external_lex_state = 6}, + [2106] = {.lex_state = 39, .external_lex_state = 5}, + [2107] = {.lex_state = 39, .external_lex_state = 5}, [2108] = {.lex_state = 39, .external_lex_state = 2}, [2109] = {.lex_state = 39, .external_lex_state = 2}, [2110] = {.lex_state = 39, .external_lex_state = 2}, @@ -9996,14 +10037,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2127] = {.lex_state = 39, .external_lex_state = 2}, [2128] = {.lex_state = 39, .external_lex_state = 2}, [2129] = {.lex_state = 39, .external_lex_state = 2}, - [2130] = {.lex_state = 39, .external_lex_state = 2}, - [2131] = {.lex_state = 39, .external_lex_state = 2}, + [2130] = {.lex_state = 39, .external_lex_state = 10}, + [2131] = {.lex_state = 39, .external_lex_state = 10}, [2132] = {.lex_state = 39, .external_lex_state = 2}, [2133] = {.lex_state = 39, .external_lex_state = 2}, [2134] = {.lex_state = 39, .external_lex_state = 2}, [2135] = {.lex_state = 39, .external_lex_state = 2}, [2136] = {.lex_state = 39, .external_lex_state = 2}, - [2137] = {.lex_state = 39, .external_lex_state = 2}, + [2137] = {.lex_state = 39, .external_lex_state = 10}, [2138] = {.lex_state = 39, .external_lex_state = 2}, [2139] = {.lex_state = 39, .external_lex_state = 2}, [2140] = {.lex_state = 39, .external_lex_state = 2}, @@ -10015,17 +10056,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2146] = {.lex_state = 39, .external_lex_state = 2}, [2147] = {.lex_state = 39, .external_lex_state = 2}, [2148] = {.lex_state = 39, .external_lex_state = 2}, - [2149] = {.lex_state = 39, .external_lex_state = 10}, + [2149] = {.lex_state = 39, .external_lex_state = 2}, [2150] = {.lex_state = 39, .external_lex_state = 2}, [2151] = {.lex_state = 39, .external_lex_state = 2}, - [2152] = {.lex_state = 39, .external_lex_state = 2}, + [2152] = {.lex_state = 39, .external_lex_state = 9}, [2153] = {.lex_state = 39, .external_lex_state = 2}, [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 = 2}, [2158] = {.lex_state = 39, .external_lex_state = 2}, - [2159] = {.lex_state = 39, .external_lex_state = 10}, + [2159] = {.lex_state = 39, .external_lex_state = 2}, [2160] = {.lex_state = 39, .external_lex_state = 2}, [2161] = {.lex_state = 39, .external_lex_state = 2}, [2162] = {.lex_state = 39, .external_lex_state = 2}, @@ -10046,7 +10087,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 9}, + [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}, @@ -10054,1071 +10095,1071 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 9}, - [2189] = {.lex_state = 39, .external_lex_state = 9}, - [2190] = {.lex_state = 39, .external_lex_state = 9}, - [2191] = {.lex_state = 39, .external_lex_state = 9}, - [2192] = {.lex_state = 39, .external_lex_state = 11}, - [2193] = {.lex_state = 39, .external_lex_state = 11}, - [2194] = {.lex_state = 39, .external_lex_state = 11}, - [2195] = {.lex_state = 39, .external_lex_state = 11}, - [2196] = {.lex_state = 39, .external_lex_state = 8}, - [2197] = {.lex_state = 39, .external_lex_state = 9}, - [2198] = {.lex_state = 3, .external_lex_state = 10}, - [2199] = {.lex_state = 39, .external_lex_state = 8}, - [2200] = {.lex_state = 3, .external_lex_state = 10}, - [2201] = {.lex_state = 3, .external_lex_state = 10}, - [2202] = {.lex_state = 39, .external_lex_state = 8}, - [2203] = {.lex_state = 39, .external_lex_state = 8}, - [2204] = {.lex_state = 3, .external_lex_state = 10}, - [2205] = {.lex_state = 39, .external_lex_state = 9}, - [2206] = {.lex_state = 39, .external_lex_state = 9}, - [2207] = {.lex_state = 39, .external_lex_state = 9}, - [2208] = {.lex_state = 39, .external_lex_state = 12}, - [2209] = {.lex_state = 39, .external_lex_state = 12}, - [2210] = {.lex_state = 39, .external_lex_state = 12}, - [2211] = {.lex_state = 39, .external_lex_state = 12}, - [2212] = {.lex_state = 39, .external_lex_state = 9}, - [2213] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 10}, + [2192] = {.lex_state = 39, .external_lex_state = 2}, + [2193] = {.lex_state = 39, .external_lex_state = 2}, + [2194] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 2}, + [2207] = {.lex_state = 39, .external_lex_state = 2}, + [2208] = {.lex_state = 39, .external_lex_state = 2}, + [2209] = {.lex_state = 39, .external_lex_state = 2}, + [2210] = {.lex_state = 39, .external_lex_state = 2}, + [2211] = {.lex_state = 39, .external_lex_state = 2}, + [2212] = {.lex_state = 39, .external_lex_state = 2}, + [2213] = {.lex_state = 39, .external_lex_state = 2}, [2214] = {.lex_state = 39, .external_lex_state = 9}, [2215] = {.lex_state = 39, .external_lex_state = 9}, - [2216] = {.lex_state = 39, .external_lex_state = 5}, - [2217] = {.lex_state = 39, .external_lex_state = 5}, - [2218] = {.lex_state = 39, .external_lex_state = 10}, - [2219] = {.lex_state = 39, .external_lex_state = 5}, - [2220] = {.lex_state = 39, .external_lex_state = 10}, - [2221] = {.lex_state = 39, .external_lex_state = 5}, - [2222] = {.lex_state = 39, .external_lex_state = 10}, - [2223] = {.lex_state = 39, .external_lex_state = 8}, - [2224] = {.lex_state = 39, .external_lex_state = 5}, - [2225] = {.lex_state = 3, .external_lex_state = 5}, - [2226] = {.lex_state = 39, .external_lex_state = 5}, - [2227] = {.lex_state = 39, .external_lex_state = 5}, - [2228] = {.lex_state = 39, .external_lex_state = 10}, - [2229] = {.lex_state = 3, .external_lex_state = 5}, - [2230] = {.lex_state = 39, .external_lex_state = 5}, - [2231] = {.lex_state = 39, .external_lex_state = 10}, - [2232] = {.lex_state = 39, .external_lex_state = 5}, - [2233] = {.lex_state = 39, .external_lex_state = 5}, - [2234] = {.lex_state = 39, .external_lex_state = 5}, - [2235] = {.lex_state = 39, .external_lex_state = 11}, - [2236] = {.lex_state = 39, .external_lex_state = 9}, - [2237] = {.lex_state = 39, .external_lex_state = 11}, - [2238] = {.lex_state = 39, .external_lex_state = 11}, - [2239] = {.lex_state = 39, .external_lex_state = 11}, - [2240] = {.lex_state = 39, .external_lex_state = 11}, - [2241] = {.lex_state = 39, .external_lex_state = 11}, - [2242] = {.lex_state = 39, .external_lex_state = 11}, - [2243] = {.lex_state = 39, .external_lex_state = 9}, - [2244] = {.lex_state = 39, .external_lex_state = 11}, - [2245] = {.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 = 11}, + [2219] = {.lex_state = 39, .external_lex_state = 11}, + [2220] = {.lex_state = 39, .external_lex_state = 11}, + [2221] = {.lex_state = 39, .external_lex_state = 11}, + [2222] = {.lex_state = 39, .external_lex_state = 8}, + [2223] = {.lex_state = 39, .external_lex_state = 9}, + [2224] = {.lex_state = 39, .external_lex_state = 9}, + [2225] = {.lex_state = 3, .external_lex_state = 10}, + [2226] = {.lex_state = 39, .external_lex_state = 9}, + [2227] = {.lex_state = 39, .external_lex_state = 8}, + [2228] = {.lex_state = 39, .external_lex_state = 9}, + [2229] = {.lex_state = 3, .external_lex_state = 10}, + [2230] = {.lex_state = 3, .external_lex_state = 10}, + [2231] = {.lex_state = 3, .external_lex_state = 10}, + [2232] = {.lex_state = 39, .external_lex_state = 8}, + [2233] = {.lex_state = 39, .external_lex_state = 8}, + [2234] = {.lex_state = 39, .external_lex_state = 12}, + [2235] = {.lex_state = 39, .external_lex_state = 12}, + [2236] = {.lex_state = 39, .external_lex_state = 12}, + [2237] = {.lex_state = 39, .external_lex_state = 12}, + [2238] = {.lex_state = 39, .external_lex_state = 9}, + [2239] = {.lex_state = 39, .external_lex_state = 9}, + [2240] = {.lex_state = 39, .external_lex_state = 9}, + [2241] = {.lex_state = 39, .external_lex_state = 9}, + [2242] = {.lex_state = 39, .external_lex_state = 10}, + [2243] = {.lex_state = 3, .external_lex_state = 5}, + [2244] = {.lex_state = 39, .external_lex_state = 5}, + [2245] = {.lex_state = 39, .external_lex_state = 5}, [2246] = {.lex_state = 39, .external_lex_state = 5}, - [2247] = {.lex_state = 39, .external_lex_state = 5}, - [2248] = {.lex_state = 3, .external_lex_state = 2}, - [2249] = {.lex_state = 39, .external_lex_state = 2}, - [2250] = {.lex_state = 39, .external_lex_state = 9}, - [2251] = {.lex_state = 39, .external_lex_state = 2}, - [2252] = {.lex_state = 39, .external_lex_state = 9}, - [2253] = {.lex_state = 39, .external_lex_state = 9}, - [2254] = {.lex_state = 39, .external_lex_state = 9}, - [2255] = {.lex_state = 39, .external_lex_state = 9}, - [2256] = {.lex_state = 39, .external_lex_state = 11}, - [2257] = {.lex_state = 39, .external_lex_state = 11}, - [2258] = {.lex_state = 39, .external_lex_state = 11}, + [2247] = {.lex_state = 3, .external_lex_state = 5}, + [2248] = {.lex_state = 39, .external_lex_state = 8}, + [2249] = {.lex_state = 39, .external_lex_state = 10}, + [2250] = {.lex_state = 39, .external_lex_state = 5}, + [2251] = {.lex_state = 39, .external_lex_state = 5}, + [2252] = {.lex_state = 39, .external_lex_state = 5}, + [2253] = {.lex_state = 39, .external_lex_state = 10}, + [2254] = {.lex_state = 39, .external_lex_state = 5}, + [2255] = {.lex_state = 39, .external_lex_state = 5}, + [2256] = {.lex_state = 39, .external_lex_state = 10}, + [2257] = {.lex_state = 39, .external_lex_state = 10}, + [2258] = {.lex_state = 39, .external_lex_state = 5}, [2259] = {.lex_state = 39, .external_lex_state = 11}, - [2260] = {.lex_state = 39, .external_lex_state = 10}, - [2261] = {.lex_state = 39, .external_lex_state = 11}, + [2260] = {.lex_state = 39, .external_lex_state = 9}, + [2261] = {.lex_state = 39, .external_lex_state = 9}, [2262] = {.lex_state = 39, .external_lex_state = 11}, - [2263] = {.lex_state = 39, .external_lex_state = 10}, - [2264] = {.lex_state = 39, .external_lex_state = 10}, - [2265] = {.lex_state = 39, .external_lex_state = 2}, - [2266] = {.lex_state = 39, .external_lex_state = 10}, - [2267] = {.lex_state = 39, .external_lex_state = 10}, + [2263] = {.lex_state = 39, .external_lex_state = 11}, + [2264] = {.lex_state = 39, .external_lex_state = 11}, + [2265] = {.lex_state = 39, .external_lex_state = 11}, + [2266] = {.lex_state = 3, .external_lex_state = 2}, + [2267] = {.lex_state = 39, .external_lex_state = 5}, [2268] = {.lex_state = 39, .external_lex_state = 11}, - [2269] = {.lex_state = 39, .external_lex_state = 11}, - [2270] = {.lex_state = 39, .external_lex_state = 10}, - [2271] = {.lex_state = 39, .external_lex_state = 10}, + [2269] = {.lex_state = 39, .external_lex_state = 5}, + [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 = 11}, + [2274] = {.lex_state = 39, .external_lex_state = 5}, + [2275] = {.lex_state = 39, .external_lex_state = 2}, [2276] = {.lex_state = 39, .external_lex_state = 9}, - [2277] = {.lex_state = 39, .external_lex_state = 10}, - [2278] = {.lex_state = 39, .external_lex_state = 11}, - [2279] = {.lex_state = 39, .external_lex_state = 9}, - [2280] = {.lex_state = 39, .external_lex_state = 10}, - [2281] = {.lex_state = 39, .external_lex_state = 11}, - [2282] = {.lex_state = 39, .external_lex_state = 12}, - [2283] = {.lex_state = 39, .external_lex_state = 2}, - [2284] = {.lex_state = 39, .external_lex_state = 8}, - [2285] = {.lex_state = 39, .external_lex_state = 12}, - [2286] = {.lex_state = 39, .external_lex_state = 8}, - [2287] = {.lex_state = 39, .external_lex_state = 12}, - [2288] = {.lex_state = 39, .external_lex_state = 12}, - [2289] = {.lex_state = 39, .external_lex_state = 12}, - [2290] = {.lex_state = 3, .external_lex_state = 10}, - [2291] = {.lex_state = 39, .external_lex_state = 11}, - [2292] = {.lex_state = 39, .external_lex_state = 2}, - [2293] = {.lex_state = 39, .external_lex_state = 2}, - [2294] = {.lex_state = 3, .external_lex_state = 10}, - [2295] = {.lex_state = 39, .external_lex_state = 9}, - [2296] = {.lex_state = 39, .external_lex_state = 8}, - [2297] = {.lex_state = 39, .external_lex_state = 8}, - [2298] = {.lex_state = 39, .external_lex_state = 2}, - [2299] = {.lex_state = 39, .external_lex_state = 12}, - [2300] = {.lex_state = 39, .external_lex_state = 2}, - [2301] = {.lex_state = 39, .external_lex_state = 12}, - [2302] = {.lex_state = 39, .external_lex_state = 9}, - [2303] = {.lex_state = 39, .external_lex_state = 8}, - [2304] = {.lex_state = 39, .external_lex_state = 9}, - [2305] = {.lex_state = 39, .external_lex_state = 9}, - [2306] = {.lex_state = 3, .external_lex_state = 10}, - [2307] = {.lex_state = 39, .external_lex_state = 9}, - [2308] = {.lex_state = 39, .external_lex_state = 9}, - [2309] = {.lex_state = 39, .external_lex_state = 12}, - [2310] = {.lex_state = 39, .external_lex_state = 10}, - [2311] = {.lex_state = 3, .external_lex_state = 10}, - [2312] = {.lex_state = 39, .external_lex_state = 11}, - [2313] = {.lex_state = 39, .external_lex_state = 11}, - [2314] = {.lex_state = 39, .external_lex_state = 9}, - [2315] = {.lex_state = 3, .external_lex_state = 10}, - [2316] = {.lex_state = 39, .external_lex_state = 12}, - [2317] = {.lex_state = 3, .external_lex_state = 10}, - [2318] = {.lex_state = 39, .external_lex_state = 11}, - [2319] = {.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 = 10}, + [2283] = {.lex_state = 39, .external_lex_state = 11}, + [2284] = {.lex_state = 39, .external_lex_state = 11}, + [2285] = {.lex_state = 39, .external_lex_state = 10}, + [2286] = {.lex_state = 39, .external_lex_state = 10}, + [2287] = {.lex_state = 39, .external_lex_state = 11}, + [2288] = {.lex_state = 39, .external_lex_state = 9}, + [2289] = {.lex_state = 39, .external_lex_state = 11}, + [2290] = {.lex_state = 39, .external_lex_state = 11}, + [2291] = {.lex_state = 39, .external_lex_state = 10}, + [2292] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 10}, + [2299] = {.lex_state = 39, .external_lex_state = 11}, + [2300] = {.lex_state = 39, .external_lex_state = 10}, + [2301] = {.lex_state = 39, .external_lex_state = 10}, + [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 = 2}, + [2306] = {.lex_state = 39, .external_lex_state = 11}, + [2307] = {.lex_state = 39, .external_lex_state = 11}, + [2308] = {.lex_state = 39, .external_lex_state = 2}, + [2309] = {.lex_state = 39, .external_lex_state = 2}, + [2310] = {.lex_state = 39, .external_lex_state = 12}, + [2311] = {.lex_state = 39, .external_lex_state = 9}, + [2312] = {.lex_state = 39, .external_lex_state = 9}, + [2313] = {.lex_state = 39, .external_lex_state = 12}, + [2314] = {.lex_state = 39, .external_lex_state = 11}, + [2315] = {.lex_state = 39, .external_lex_state = 8}, + [2316] = {.lex_state = 39, .external_lex_state = 2}, + [2317] = {.lex_state = 39, .external_lex_state = 8}, + [2318] = {.lex_state = 39, .external_lex_state = 2}, + [2319] = {.lex_state = 39, .external_lex_state = 2}, [2320] = {.lex_state = 39, .external_lex_state = 2}, - [2321] = {.lex_state = 39, .external_lex_state = 10}, - [2322] = {.lex_state = 39, .external_lex_state = 2}, + [2321] = {.lex_state = 39, .external_lex_state = 2}, + [2322] = {.lex_state = 39, .external_lex_state = 9}, [2323] = {.lex_state = 39, .external_lex_state = 2}, - [2324] = {.lex_state = 39, .external_lex_state = 2}, + [2324] = {.lex_state = 3, .external_lex_state = 10}, [2325] = {.lex_state = 39, .external_lex_state = 2}, - [2326] = {.lex_state = 39, .external_lex_state = 9}, + [2326] = {.lex_state = 39, .external_lex_state = 2}, [2327] = {.lex_state = 39, .external_lex_state = 2}, - [2328] = {.lex_state = 39, .external_lex_state = 2}, - [2329] = {.lex_state = 39, .external_lex_state = 2}, - [2330] = {.lex_state = 39, .external_lex_state = 2}, + [2328] = {.lex_state = 39, .external_lex_state = 9}, + [2329] = {.lex_state = 39, .external_lex_state = 12}, + [2330] = {.lex_state = 39, .external_lex_state = 12}, [2331] = {.lex_state = 39, .external_lex_state = 2}, - [2332] = {.lex_state = 39, .external_lex_state = 2}, - [2333] = {.lex_state = 3, .external_lex_state = 10}, - [2334] = {.lex_state = 39, .external_lex_state = 8}, - [2335] = {.lex_state = 39, .external_lex_state = 2}, + [2332] = {.lex_state = 39, .external_lex_state = 8}, + [2333] = {.lex_state = 39, .external_lex_state = 12}, + [2334] = {.lex_state = 3, .external_lex_state = 10}, + [2335] = {.lex_state = 39, .external_lex_state = 11}, [2336] = {.lex_state = 39, .external_lex_state = 2}, - [2337] = {.lex_state = 39, .external_lex_state = 8}, - [2338] = {.lex_state = 39, .external_lex_state = 11}, - [2339] = {.lex_state = 39, .external_lex_state = 2}, - [2340] = {.lex_state = 39, .external_lex_state = 8}, - [2341] = {.lex_state = 39, .external_lex_state = 11}, - [2342] = {.lex_state = 39, .external_lex_state = 11}, - [2343] = {.lex_state = 39, .external_lex_state = 2}, - [2344] = {.lex_state = 39, .external_lex_state = 10}, - [2345] = {.lex_state = 39, .external_lex_state = 11}, - [2346] = {.lex_state = 39, .external_lex_state = 11}, - [2347] = {.lex_state = 39, .external_lex_state = 10}, - [2348] = {.lex_state = 39, .external_lex_state = 12}, - [2349] = {.lex_state = 39, .external_lex_state = 10}, + [2337] = {.lex_state = 3, .external_lex_state = 10}, + [2338] = {.lex_state = 3, .external_lex_state = 10}, + [2339] = {.lex_state = 39, .external_lex_state = 9}, + [2340] = {.lex_state = 39, .external_lex_state = 9}, + [2341] = {.lex_state = 39, .external_lex_state = 12}, + [2342] = {.lex_state = 39, .external_lex_state = 8}, + [2343] = {.lex_state = 39, .external_lex_state = 9}, + [2344] = {.lex_state = 3, .external_lex_state = 10}, + [2345] = {.lex_state = 39, .external_lex_state = 2}, + [2346] = {.lex_state = 39, .external_lex_state = 8}, + [2347] = {.lex_state = 3, .external_lex_state = 10}, + [2348] = {.lex_state = 39, .external_lex_state = 8}, + [2349] = {.lex_state = 39, .external_lex_state = 2}, [2350] = {.lex_state = 39, .external_lex_state = 12}, [2351] = {.lex_state = 39, .external_lex_state = 10}, [2352] = {.lex_state = 39, .external_lex_state = 2}, - [2353] = {.lex_state = 39, .external_lex_state = 2}, - [2354] = {.lex_state = 39, .external_lex_state = 2}, - [2355] = {.lex_state = 39, .external_lex_state = 2}, - [2356] = {.lex_state = 39, .external_lex_state = 10}, - [2357] = {.lex_state = 39, .external_lex_state = 8}, - [2358] = {.lex_state = 39, .external_lex_state = 2}, - [2359] = {.lex_state = 39, .external_lex_state = 8}, - [2360] = {.lex_state = 39, .external_lex_state = 2}, - [2361] = {.lex_state = 39, .external_lex_state = 10}, - [2362] = {.lex_state = 39, .external_lex_state = 10}, - [2363] = {.lex_state = 39, .external_lex_state = 12}, - [2364] = {.lex_state = 39, .external_lex_state = 2}, - [2365] = {.lex_state = 39, .external_lex_state = 12}, - [2366] = {.lex_state = 39, .external_lex_state = 12}, - [2367] = {.lex_state = 39, .external_lex_state = 12}, - [2368] = {.lex_state = 39, .external_lex_state = 2}, + [2353] = {.lex_state = 39, .external_lex_state = 9}, + [2354] = {.lex_state = 39, .external_lex_state = 11}, + [2355] = {.lex_state = 39, .external_lex_state = 11}, + [2356] = {.lex_state = 39, .external_lex_state = 12}, + [2357] = {.lex_state = 39, .external_lex_state = 2}, + [2358] = {.lex_state = 39, .external_lex_state = 12}, + [2359] = {.lex_state = 3, .external_lex_state = 10}, + [2360] = {.lex_state = 39, .external_lex_state = 10}, + [2361] = {.lex_state = 39, .external_lex_state = 9}, + [2362] = {.lex_state = 39, .external_lex_state = 2}, + [2363] = {.lex_state = 39, .external_lex_state = 10}, + [2364] = {.lex_state = 39, .external_lex_state = 10}, + [2365] = {.lex_state = 39, .external_lex_state = 2}, + [2366] = {.lex_state = 39, .external_lex_state = 10}, + [2367] = {.lex_state = 39, .external_lex_state = 2}, + [2368] = {.lex_state = 39, .external_lex_state = 10}, [2369] = {.lex_state = 39, .external_lex_state = 2}, - [2370] = {.lex_state = 39, .external_lex_state = 10}, - [2371] = {.lex_state = 39, .external_lex_state = 2}, - [2372] = {.lex_state = 39, .external_lex_state = 2}, - [2373] = {.lex_state = 39, .external_lex_state = 12}, - [2374] = {.lex_state = 39, .external_lex_state = 10}, - [2375] = {.lex_state = 39, .external_lex_state = 10}, - [2376] = {.lex_state = 39, .external_lex_state = 2}, + [2370] = {.lex_state = 39, .external_lex_state = 8}, + [2371] = {.lex_state = 39, .external_lex_state = 11}, + [2372] = {.lex_state = 39, .external_lex_state = 10}, + [2373] = {.lex_state = 39, .external_lex_state = 11}, + [2374] = {.lex_state = 39, .external_lex_state = 12}, + [2375] = {.lex_state = 39, .external_lex_state = 11}, + [2376] = {.lex_state = 39, .external_lex_state = 12}, [2377] = {.lex_state = 39, .external_lex_state = 2}, - [2378] = {.lex_state = 39, .external_lex_state = 10}, - [2379] = {.lex_state = 39, .external_lex_state = 10}, - [2380] = {.lex_state = 39, .external_lex_state = 10}, + [2378] = {.lex_state = 39, .external_lex_state = 12}, + [2379] = {.lex_state = 39, .external_lex_state = 12}, + [2380] = {.lex_state = 39, .external_lex_state = 12}, [2381] = {.lex_state = 39, .external_lex_state = 2}, - [2382] = {.lex_state = 39, .external_lex_state = 10}, - [2383] = {.lex_state = 39, .external_lex_state = 10}, - [2384] = {.lex_state = 39, .external_lex_state = 10}, - [2385] = {.lex_state = 39, .external_lex_state = 2}, + [2382] = {.lex_state = 39, .external_lex_state = 2}, + [2383] = {.lex_state = 39, .external_lex_state = 11}, + [2384] = {.lex_state = 39, .external_lex_state = 2}, + [2385] = {.lex_state = 39, .external_lex_state = 10}, [2386] = {.lex_state = 39, .external_lex_state = 2}, [2387] = {.lex_state = 39, .external_lex_state = 10}, - [2388] = {.lex_state = 39, .external_lex_state = 11}, + [2388] = {.lex_state = 39, .external_lex_state = 12}, [2389] = {.lex_state = 39, .external_lex_state = 10}, [2390] = {.lex_state = 39, .external_lex_state = 10}, [2391] = {.lex_state = 39, .external_lex_state = 10}, - [2392] = {.lex_state = 39, .external_lex_state = 8}, - [2393] = {.lex_state = 39, .external_lex_state = 9}, - [2394] = {.lex_state = 39, .external_lex_state = 9}, - [2395] = {.lex_state = 39, .external_lex_state = 9}, + [2392] = {.lex_state = 39, .external_lex_state = 2}, + [2393] = {.lex_state = 39, .external_lex_state = 10}, + [2394] = {.lex_state = 39, .external_lex_state = 2}, + [2395] = {.lex_state = 39, .external_lex_state = 8}, [2396] = {.lex_state = 39, .external_lex_state = 10}, - [2397] = {.lex_state = 39, .external_lex_state = 9}, - [2398] = {.lex_state = 39, .external_lex_state = 9}, - [2399] = {.lex_state = 39, .external_lex_state = 9}, - [2400] = {.lex_state = 39, .external_lex_state = 9}, - [2401] = {.lex_state = 39, .external_lex_state = 9}, - [2402] = {.lex_state = 39, .external_lex_state = 8}, - [2403] = {.lex_state = 39, .external_lex_state = 9}, - [2404] = {.lex_state = 39, .external_lex_state = 9}, - [2405] = {.lex_state = 39, .external_lex_state = 9}, - [2406] = {.lex_state = 39, .external_lex_state = 9}, - [2407] = {.lex_state = 39, .external_lex_state = 9}, - [2408] = {.lex_state = 39, .external_lex_state = 9}, - [2409] = {.lex_state = 39, .external_lex_state = 12}, + [2397] = {.lex_state = 39, .external_lex_state = 10}, + [2398] = {.lex_state = 39, .external_lex_state = 2}, + [2399] = {.lex_state = 39, .external_lex_state = 8}, + [2400] = {.lex_state = 39, .external_lex_state = 2}, + [2401] = {.lex_state = 39, .external_lex_state = 11}, + [2402] = {.lex_state = 39, .external_lex_state = 12}, + [2403] = {.lex_state = 39, .external_lex_state = 10}, + [2404] = {.lex_state = 39, .external_lex_state = 2}, + [2405] = {.lex_state = 39, .external_lex_state = 8}, + [2406] = {.lex_state = 39, .external_lex_state = 2}, + [2407] = {.lex_state = 39, .external_lex_state = 2}, + [2408] = {.lex_state = 39, .external_lex_state = 10}, + [2409] = {.lex_state = 39, .external_lex_state = 2}, [2410] = {.lex_state = 39, .external_lex_state = 10}, - [2411] = {.lex_state = 39, .external_lex_state = 9}, - [2412] = {.lex_state = 39, .external_lex_state = 9}, - [2413] = {.lex_state = 39, .external_lex_state = 9}, - [2414] = {.lex_state = 39, .external_lex_state = 9}, + [2411] = {.lex_state = 39, .external_lex_state = 10}, + [2412] = {.lex_state = 39, .external_lex_state = 10}, + [2413] = {.lex_state = 39, .external_lex_state = 11}, + [2414] = {.lex_state = 39, .external_lex_state = 2}, [2415] = {.lex_state = 39, .external_lex_state = 10}, - [2416] = {.lex_state = 39, .external_lex_state = 10}, - [2417] = {.lex_state = 39, .external_lex_state = 9}, - [2418] = {.lex_state = 39, .external_lex_state = 10}, - [2419] = {.lex_state = 39, .external_lex_state = 10}, + [2416] = {.lex_state = 39, .external_lex_state = 2}, + [2417] = {.lex_state = 39, .external_lex_state = 10}, + [2418] = {.lex_state = 39, .external_lex_state = 9}, + [2419] = {.lex_state = 39, .external_lex_state = 11}, [2420] = {.lex_state = 39, .external_lex_state = 9}, - [2421] = {.lex_state = 39, .external_lex_state = 11}, + [2421] = {.lex_state = 39, .external_lex_state = 9}, [2422] = {.lex_state = 39, .external_lex_state = 12}, - [2423] = {.lex_state = 39, .external_lex_state = 9}, - [2424] = {.lex_state = 39, .external_lex_state = 10}, - [2425] = {.lex_state = 39, .external_lex_state = 9}, - [2426] = {.lex_state = 39, .external_lex_state = 10}, + [2423] = {.lex_state = 39, .external_lex_state = 11}, + [2424] = {.lex_state = 39, .external_lex_state = 9}, + [2425] = {.lex_state = 39, .external_lex_state = 10}, + [2426] = {.lex_state = 39, .external_lex_state = 9}, [2427] = {.lex_state = 39, .external_lex_state = 9}, - [2428] = {.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 = 11}, + [2430] = {.lex_state = 39, .external_lex_state = 12}, [2431] = {.lex_state = 39, .external_lex_state = 9}, - [2432] = {.lex_state = 39, .external_lex_state = 9}, + [2432] = {.lex_state = 39, .external_lex_state = 10}, [2433] = {.lex_state = 39, .external_lex_state = 9}, - [2434] = {.lex_state = 39, .external_lex_state = 10}, - [2435] = {.lex_state = 39, .external_lex_state = 11}, - [2436] = {.lex_state = 39, .external_lex_state = 11}, + [2434] = {.lex_state = 39, .external_lex_state = 9}, + [2435] = {.lex_state = 39, .external_lex_state = 10}, + [2436] = {.lex_state = 39, .external_lex_state = 10}, [2437] = {.lex_state = 39, .external_lex_state = 9}, - [2438] = {.lex_state = 39, .external_lex_state = 8}, + [2438] = {.lex_state = 39, .external_lex_state = 10}, [2439] = {.lex_state = 39, .external_lex_state = 9}, - [2440] = {.lex_state = 39, .external_lex_state = 10}, + [2440] = {.lex_state = 39, .external_lex_state = 9}, [2441] = {.lex_state = 39, .external_lex_state = 9}, - [2442] = {.lex_state = 39, .external_lex_state = 10}, + [2442] = {.lex_state = 39, .external_lex_state = 8}, [2443] = {.lex_state = 39, .external_lex_state = 9}, - [2444] = {.lex_state = 39, .external_lex_state = 8}, - [2445] = {.lex_state = 39, .external_lex_state = 9}, + [2444] = {.lex_state = 39, .external_lex_state = 12}, + [2445] = {.lex_state = 39, .external_lex_state = 10}, [2446] = {.lex_state = 39, .external_lex_state = 8}, - [2447] = {.lex_state = 39, .external_lex_state = 10}, - [2448] = {.lex_state = 39, .external_lex_state = 9}, - [2449] = {.lex_state = 39, .external_lex_state = 10}, - [2450] = {.lex_state = 39, .external_lex_state = 10}, - [2451] = {.lex_state = 39, .external_lex_state = 12}, - [2452] = {.lex_state = 39, .external_lex_state = 9}, - [2453] = {.lex_state = 39, .external_lex_state = 10}, - [2454] = {.lex_state = 39, .external_lex_state = 9}, - [2455] = {.lex_state = 39, .external_lex_state = 8}, - [2456] = {.lex_state = 39, .external_lex_state = 10}, - [2457] = {.lex_state = 39, .external_lex_state = 9}, - [2458] = {.lex_state = 39, .external_lex_state = 10}, + [2447] = {.lex_state = 39, .external_lex_state = 9}, + [2448] = {.lex_state = 39, .external_lex_state = 10}, + [2449] = {.lex_state = 39, .external_lex_state = 11}, + [2450] = {.lex_state = 39, .external_lex_state = 9}, + [2451] = {.lex_state = 39, .external_lex_state = 9}, + [2452] = {.lex_state = 39, .external_lex_state = 10}, + [2453] = {.lex_state = 39, .external_lex_state = 9}, + [2454] = {.lex_state = 39, .external_lex_state = 10}, + [2455] = {.lex_state = 39, .external_lex_state = 12}, + [2456] = {.lex_state = 39, .external_lex_state = 9}, + [2457] = {.lex_state = 39, .external_lex_state = 10}, + [2458] = {.lex_state = 39, .external_lex_state = 9}, [2459] = {.lex_state = 39, .external_lex_state = 11}, - [2460] = {.lex_state = 39, .external_lex_state = 10}, + [2460] = {.lex_state = 39, .external_lex_state = 11}, [2461] = {.lex_state = 39, .external_lex_state = 9}, [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}, - [2467] = {.lex_state = 39, .external_lex_state = 9}, - [2468] = {.lex_state = 39, .external_lex_state = 12}, - [2469] = {.lex_state = 39, .external_lex_state = 9}, + [2463] = {.lex_state = 39, .external_lex_state = 9}, + [2464] = {.lex_state = 39, .external_lex_state = 9}, + [2465] = {.lex_state = 39, .external_lex_state = 12}, + [2466] = {.lex_state = 39, .external_lex_state = 10}, + [2467] = {.lex_state = 39, .external_lex_state = 8}, + [2468] = {.lex_state = 39, .external_lex_state = 9}, + [2469] = {.lex_state = 39, .external_lex_state = 10}, [2470] = {.lex_state = 39, .external_lex_state = 9}, - [2471] = {.lex_state = 39, .external_lex_state = 12}, + [2471] = {.lex_state = 39, .external_lex_state = 9}, [2472] = {.lex_state = 39, .external_lex_state = 9}, [2473] = {.lex_state = 39, .external_lex_state = 10}, [2474] = {.lex_state = 39, .external_lex_state = 10}, - [2475] = {.lex_state = 39, .external_lex_state = 10}, - [2476] = {.lex_state = 39, .external_lex_state = 9}, - [2477] = {.lex_state = 39, .external_lex_state = 9}, - [2478] = {.lex_state = 39, .external_lex_state = 10}, - [2479] = {.lex_state = 39, .external_lex_state = 11}, - [2480] = {.lex_state = 39, .external_lex_state = 10}, - [2481] = {.lex_state = 39, .external_lex_state = 10}, + [2475] = {.lex_state = 39, .external_lex_state = 9}, + [2476] = {.lex_state = 39, .external_lex_state = 10}, + [2477] = {.lex_state = 39, .external_lex_state = 10}, + [2478] = {.lex_state = 39, .external_lex_state = 9}, + [2479] = {.lex_state = 39, .external_lex_state = 10}, + [2480] = {.lex_state = 39, .external_lex_state = 9}, + [2481] = {.lex_state = 39, .external_lex_state = 9}, [2482] = {.lex_state = 39, .external_lex_state = 10}, - [2483] = {.lex_state = 39, .external_lex_state = 10}, + [2483] = {.lex_state = 39, .external_lex_state = 11}, [2484] = {.lex_state = 39, .external_lex_state = 9}, - [2485] = {.lex_state = 39, .external_lex_state = 9}, - [2486] = {.lex_state = 39, .external_lex_state = 10}, - [2487] = {.lex_state = 39, .external_lex_state = 8}, - [2488] = {.lex_state = 39, .external_lex_state = 10}, + [2485] = {.lex_state = 39, .external_lex_state = 10}, + [2486] = {.lex_state = 39, .external_lex_state = 9}, + [2487] = {.lex_state = 39, .external_lex_state = 10}, + [2488] = {.lex_state = 39, .external_lex_state = 9}, [2489] = {.lex_state = 39, .external_lex_state = 9}, [2490] = {.lex_state = 39, .external_lex_state = 10}, - [2491] = {.lex_state = 39, .external_lex_state = 8}, + [2491] = {.lex_state = 39, .external_lex_state = 9}, [2492] = {.lex_state = 39, .external_lex_state = 9}, - [2493] = {.lex_state = 39, .external_lex_state = 11}, + [2493] = {.lex_state = 39, .external_lex_state = 10}, [2494] = {.lex_state = 39, .external_lex_state = 9}, - [2495] = {.lex_state = 39, .external_lex_state = 12}, + [2495] = {.lex_state = 39, .external_lex_state = 9}, [2496] = {.lex_state = 39, .external_lex_state = 9}, - [2497] = {.lex_state = 39, .external_lex_state = 11}, - [2498] = {.lex_state = 39, .external_lex_state = 8}, + [2497] = {.lex_state = 39, .external_lex_state = 12}, + [2498] = {.lex_state = 39, .external_lex_state = 11}, [2499] = {.lex_state = 39, .external_lex_state = 12}, - [2500] = {.lex_state = 39, .external_lex_state = 11}, + [2500] = {.lex_state = 39, .external_lex_state = 9}, [2501] = {.lex_state = 39, .external_lex_state = 9}, - [2502] = {.lex_state = 39, .external_lex_state = 12}, - [2503] = {.lex_state = 39, .external_lex_state = 10}, - [2504] = {.lex_state = 39, .external_lex_state = 10}, + [2502] = {.lex_state = 39, .external_lex_state = 10}, + [2503] = {.lex_state = 39, .external_lex_state = 8}, + [2504] = {.lex_state = 39, .external_lex_state = 12}, [2505] = {.lex_state = 39, .external_lex_state = 10}, - [2506] = {.lex_state = 39, .external_lex_state = 9}, - [2507] = {.lex_state = 39, .external_lex_state = 9}, - [2508] = {.lex_state = 39, .external_lex_state = 2}, - [2509] = {.lex_state = 39, .external_lex_state = 9}, - [2510] = {.lex_state = 39, .external_lex_state = 9}, - [2511] = {.lex_state = 39, .external_lex_state = 9}, - [2512] = {.lex_state = 39, .external_lex_state = 9}, - [2513] = {.lex_state = 39, .external_lex_state = 9}, - [2514] = {.lex_state = 39, .external_lex_state = 2}, - [2515] = {.lex_state = 39, .external_lex_state = 9}, - [2516] = {.lex_state = 39, .external_lex_state = 9}, - [2517] = {.lex_state = 39, .external_lex_state = 9}, - [2518] = {.lex_state = 39, .external_lex_state = 2}, - [2519] = {.lex_state = 39, .external_lex_state = 9}, - [2520] = {.lex_state = 39, .external_lex_state = 2}, - [2521] = {.lex_state = 39, .external_lex_state = 9}, + [2506] = {.lex_state = 39, .external_lex_state = 10}, + [2507] = {.lex_state = 39, .external_lex_state = 10}, + [2508] = {.lex_state = 39, .external_lex_state = 9}, + [2509] = {.lex_state = 39, .external_lex_state = 10}, + [2510] = {.lex_state = 39, .external_lex_state = 10}, + [2511] = {.lex_state = 39, .external_lex_state = 10}, + [2512] = {.lex_state = 39, .external_lex_state = 10}, + [2513] = {.lex_state = 39, .external_lex_state = 12}, + [2514] = {.lex_state = 39, .external_lex_state = 9}, + [2515] = {.lex_state = 39, .external_lex_state = 8}, + [2516] = {.lex_state = 39, .external_lex_state = 10}, + [2517] = {.lex_state = 39, .external_lex_state = 10}, + [2518] = {.lex_state = 39, .external_lex_state = 8}, + [2519] = {.lex_state = 39, .external_lex_state = 11}, + [2520] = {.lex_state = 39, .external_lex_state = 9}, + [2521] = {.lex_state = 39, .external_lex_state = 8}, [2522] = {.lex_state = 39, .external_lex_state = 9}, - [2523] = {.lex_state = 39, .external_lex_state = 9}, + [2523] = {.lex_state = 39, .external_lex_state = 11}, [2524] = {.lex_state = 39, .external_lex_state = 9}, - [2525] = {.lex_state = 39, .external_lex_state = 2}, - [2526] = {.lex_state = 39, .external_lex_state = 9}, - [2527] = {.lex_state = 39, .external_lex_state = 9}, - [2528] = {.lex_state = 39, .external_lex_state = 9}, + [2525] = {.lex_state = 39, .external_lex_state = 10}, + [2526] = {.lex_state = 39, .external_lex_state = 10}, + [2527] = {.lex_state = 39, .external_lex_state = 10}, + [2528] = {.lex_state = 39, .external_lex_state = 10}, [2529] = {.lex_state = 39, .external_lex_state = 9}, - [2530] = {.lex_state = 39, .external_lex_state = 2}, - [2531] = {.lex_state = 39, .external_lex_state = 2}, + [2530] = {.lex_state = 39, .external_lex_state = 8}, + [2531] = {.lex_state = 39, .external_lex_state = 8}, [2532] = {.lex_state = 39, .external_lex_state = 9}, - [2533] = {.lex_state = 39, .external_lex_state = 8}, + [2533] = {.lex_state = 39, .external_lex_state = 9}, [2534] = {.lex_state = 39, .external_lex_state = 9}, [2535] = {.lex_state = 39, .external_lex_state = 9}, [2536] = {.lex_state = 39, .external_lex_state = 9}, - [2537] = {.lex_state = 39, .external_lex_state = 9}, + [2537] = {.lex_state = 39, .external_lex_state = 2}, [2538] = {.lex_state = 39, .external_lex_state = 9}, - [2539] = {.lex_state = 39, .external_lex_state = 9}, - [2540] = {.lex_state = 39, .external_lex_state = 2}, - [2541] = {.lex_state = 39, .external_lex_state = 9}, - [2542] = {.lex_state = 39, .external_lex_state = 9}, - [2543] = {.lex_state = 39, .external_lex_state = 2}, - [2544] = {.lex_state = 22, .external_lex_state = 13}, - [2545] = {.lex_state = 22, .external_lex_state = 13}, - [2546] = {.lex_state = 22, .external_lex_state = 13}, - [2547] = {.lex_state = 22, .external_lex_state = 13}, - [2548] = {.lex_state = 21, .external_lex_state = 9}, - [2549] = {.lex_state = 22, .external_lex_state = 13}, - [2550] = {.lex_state = 22, .external_lex_state = 13}, - [2551] = {.lex_state = 22, .external_lex_state = 13}, - [2552] = {.lex_state = 22, .external_lex_state = 13}, - [2553] = {.lex_state = 22, .external_lex_state = 13}, - [2554] = {.lex_state = 22, .external_lex_state = 13}, - [2555] = {.lex_state = 22, .external_lex_state = 13}, - [2556] = {.lex_state = 22, .external_lex_state = 13}, - [2557] = {.lex_state = 22, .external_lex_state = 13}, - [2558] = {.lex_state = 22, .external_lex_state = 13}, - [2559] = {.lex_state = 22, .external_lex_state = 13}, - [2560] = {.lex_state = 21, .external_lex_state = 9}, - [2561] = {.lex_state = 22, .external_lex_state = 13}, - [2562] = {.lex_state = 22, .external_lex_state = 13}, - [2563] = {.lex_state = 22, .external_lex_state = 13}, - [2564] = {.lex_state = 22, .external_lex_state = 13}, + [2539] = {.lex_state = 39, .external_lex_state = 2}, + [2540] = {.lex_state = 39, .external_lex_state = 9}, + [2541] = {.lex_state = 39, .external_lex_state = 2}, + [2542] = {.lex_state = 39, .external_lex_state = 2}, + [2543] = {.lex_state = 39, .external_lex_state = 9}, + [2544] = {.lex_state = 39, .external_lex_state = 2}, + [2545] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 9}, + [2551] = {.lex_state = 39, .external_lex_state = 2}, + [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 = 9}, + [2556] = {.lex_state = 39, .external_lex_state = 9}, + [2557] = {.lex_state = 39, .external_lex_state = 9}, + [2558] = {.lex_state = 39, .external_lex_state = 9}, + [2559] = {.lex_state = 39, .external_lex_state = 9}, + [2560] = {.lex_state = 39, .external_lex_state = 8}, + [2561] = {.lex_state = 39, .external_lex_state = 9}, + [2562] = {.lex_state = 39, .external_lex_state = 9}, + [2563] = {.lex_state = 39, .external_lex_state = 2}, + [2564] = {.lex_state = 39, .external_lex_state = 9}, [2565] = {.lex_state = 39, .external_lex_state = 9}, - [2566] = {.lex_state = 21, .external_lex_state = 9}, + [2566] = {.lex_state = 39, .external_lex_state = 9}, [2567] = {.lex_state = 39, .external_lex_state = 9}, [2568] = {.lex_state = 39, .external_lex_state = 9}, - [2569] = {.lex_state = 21, .external_lex_state = 9}, - [2570] = {.lex_state = 39, .external_lex_state = 9}, - [2571] = {.lex_state = 39, .external_lex_state = 8}, - [2572] = {.lex_state = 39, .external_lex_state = 10}, - [2573] = {.lex_state = 39, .external_lex_state = 10}, - [2574] = {.lex_state = 39, .external_lex_state = 10}, - [2575] = {.lex_state = 39, .external_lex_state = 9}, - [2576] = {.lex_state = 39, .external_lex_state = 10}, - [2577] = {.lex_state = 39, .external_lex_state = 9}, - [2578] = {.lex_state = 39, .external_lex_state = 9}, - [2579] = {.lex_state = 39, .external_lex_state = 12}, - [2580] = {.lex_state = 39, .external_lex_state = 9}, - [2581] = {.lex_state = 39, .external_lex_state = 9}, - [2582] = {.lex_state = 39, .external_lex_state = 10}, - [2583] = {.lex_state = 39, .external_lex_state = 9}, - [2584] = {.lex_state = 39, .external_lex_state = 10}, - [2585] = {.lex_state = 39, .external_lex_state = 9}, - [2586] = {.lex_state = 39, .external_lex_state = 9}, - [2587] = {.lex_state = 39, .external_lex_state = 9}, - [2588] = {.lex_state = 39, .external_lex_state = 9}, - [2589] = {.lex_state = 39, .external_lex_state = 9}, - [2590] = {.lex_state = 39, .external_lex_state = 9}, - [2591] = {.lex_state = 39, .external_lex_state = 9}, - [2592] = {.lex_state = 39, .external_lex_state = 10}, + [2569] = {.lex_state = 39, .external_lex_state = 2}, + [2570] = {.lex_state = 21, .external_lex_state = 9}, + [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 = 21, .external_lex_state = 9}, + [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 = 22, .external_lex_state = 13}, + [2583] = {.lex_state = 22, .external_lex_state = 13}, + [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 = 22, .external_lex_state = 13}, + [2591] = {.lex_state = 21, .external_lex_state = 9}, + [2592] = {.lex_state = 21, .external_lex_state = 9}, [2593] = {.lex_state = 39, .external_lex_state = 9}, - [2594] = {.lex_state = 39, .external_lex_state = 9}, + [2594] = {.lex_state = 39, .external_lex_state = 8}, [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 = 9}, [2599] = {.lex_state = 39, .external_lex_state = 9}, - [2600] = {.lex_state = 39, .external_lex_state = 11}, - [2601] = {.lex_state = 22, .external_lex_state = 13}, - [2602] = {.lex_state = 39, .external_lex_state = 9}, - [2603] = {.lex_state = 39, .external_lex_state = 10}, - [2604] = {.lex_state = 22, .external_lex_state = 13}, - [2605] = {.lex_state = 39, .external_lex_state = 9}, - [2606] = {.lex_state = 39, .external_lex_state = 9}, - [2607] = {.lex_state = 39, .external_lex_state = 10}, + [2600] = {.lex_state = 39, .external_lex_state = 9}, + [2601] = {.lex_state = 39, .external_lex_state = 10}, + [2602] = {.lex_state = 39, .external_lex_state = 11}, + [2603] = {.lex_state = 39, .external_lex_state = 9}, + [2604] = {.lex_state = 39, .external_lex_state = 9}, + [2605] = {.lex_state = 39, .external_lex_state = 12}, + [2606] = {.lex_state = 39, .external_lex_state = 10}, + [2607] = {.lex_state = 39, .external_lex_state = 9}, [2608] = {.lex_state = 39, .external_lex_state = 9}, [2609] = {.lex_state = 39, .external_lex_state = 10}, - [2610] = {.lex_state = 39, .external_lex_state = 10}, + [2610] = {.lex_state = 39, .external_lex_state = 9}, [2611] = {.lex_state = 39, .external_lex_state = 9}, - [2612] = {.lex_state = 39, .external_lex_state = 11}, - [2613] = {.lex_state = 39, .external_lex_state = 9}, - [2614] = {.lex_state = 39, .external_lex_state = 10}, - [2615] = {.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 = 39, .external_lex_state = 9}, - [2617] = {.lex_state = 3, .external_lex_state = 10}, - [2618] = {.lex_state = 39, .external_lex_state = 9}, + [2617] = {.lex_state = 39, .external_lex_state = 9}, + [2618] = {.lex_state = 22, .external_lex_state = 13}, [2619] = {.lex_state = 39, .external_lex_state = 9}, - [2620] = {.lex_state = 39, .external_lex_state = 11}, + [2620] = {.lex_state = 39, .external_lex_state = 9}, [2621] = {.lex_state = 39, .external_lex_state = 9}, - [2622] = {.lex_state = 39, .external_lex_state = 9}, - [2623] = {.lex_state = 3, .external_lex_state = 10}, - [2624] = {.lex_state = 39, .external_lex_state = 12}, - [2625] = {.lex_state = 39, .external_lex_state = 12}, + [2622] = {.lex_state = 3, .external_lex_state = 10}, + [2623] = {.lex_state = 39, .external_lex_state = 11}, + [2624] = {.lex_state = 39, .external_lex_state = 10}, + [2625] = {.lex_state = 3, .external_lex_state = 10}, [2626] = {.lex_state = 39, .external_lex_state = 9}, - [2627] = {.lex_state = 39, .external_lex_state = 12}, - [2628] = {.lex_state = 39, .external_lex_state = 12}, - [2629] = {.lex_state = 39, .external_lex_state = 12}, - [2630] = {.lex_state = 39, .external_lex_state = 12}, - [2631] = {.lex_state = 39, .external_lex_state = 9}, - [2632] = {.lex_state = 39, .external_lex_state = 9}, - [2633] = {.lex_state = 39, .external_lex_state = 12}, + [2627] = {.lex_state = 39, .external_lex_state = 10}, + [2628] = {.lex_state = 39, .external_lex_state = 9}, + [2629] = {.lex_state = 39, .external_lex_state = 10}, + [2630] = {.lex_state = 39, .external_lex_state = 9}, + [2631] = {.lex_state = 39, .external_lex_state = 10}, + [2632] = {.lex_state = 39, .external_lex_state = 10}, + [2633] = {.lex_state = 39, .external_lex_state = 9}, [2634] = {.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 = 12}, - [2638] = {.lex_state = 39, .external_lex_state = 12}, - [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 = 39, .external_lex_state = 12}, - [2643] = {.lex_state = 39, .external_lex_state = 9}, + [2635] = {.lex_state = 39, .external_lex_state = 9}, + [2636] = {.lex_state = 39, .external_lex_state = 10}, + [2637] = {.lex_state = 39, .external_lex_state = 9}, + [2638] = {.lex_state = 39, .external_lex_state = 10}, + [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 = 22, .external_lex_state = 13}, + [2643] = {.lex_state = 39, .external_lex_state = 12}, [2644] = {.lex_state = 39, .external_lex_state = 9}, - [2645] = {.lex_state = 39, .external_lex_state = 10}, - [2646] = {.lex_state = 39, .external_lex_state = 10}, - [2647] = {.lex_state = 39, .external_lex_state = 11}, - [2648] = {.lex_state = 39, .external_lex_state = 11}, - [2649] = {.lex_state = 39, .external_lex_state = 12}, + [2645] = {.lex_state = 39, .external_lex_state = 11}, + [2646] = {.lex_state = 39, .external_lex_state = 9}, + [2647] = {.lex_state = 39, .external_lex_state = 9}, + [2648] = {.lex_state = 39, .external_lex_state = 9}, + [2649] = {.lex_state = 39, .external_lex_state = 9}, [2650] = {.lex_state = 39, .external_lex_state = 9}, - [2651] = {.lex_state = 39, .external_lex_state = 9}, - [2652] = {.lex_state = 39, .external_lex_state = 9}, + [2651] = {.lex_state = 39, .external_lex_state = 10}, + [2652] = {.lex_state = 39, .external_lex_state = 12}, [2653] = {.lex_state = 39, .external_lex_state = 9}, - [2654] = {.lex_state = 39, .external_lex_state = 9}, - [2655] = {.lex_state = 39, .external_lex_state = 8}, - [2656] = {.lex_state = 39, .external_lex_state = 8}, + [2654] = {.lex_state = 39, .external_lex_state = 12}, + [2655] = {.lex_state = 39, .external_lex_state = 9}, + [2656] = {.lex_state = 39, .external_lex_state = 12}, [2657] = {.lex_state = 39, .external_lex_state = 12}, - [2658] = {.lex_state = 39, .external_lex_state = 8}, - [2659] = {.lex_state = 3, .external_lex_state = 10}, - [2660] = {.lex_state = 3, .external_lex_state = 10}, - [2661] = {.lex_state = 3, .external_lex_state = 10}, - [2662] = {.lex_state = 3, .external_lex_state = 10}, + [2658] = {.lex_state = 39, .external_lex_state = 12}, + [2659] = {.lex_state = 39, .external_lex_state = 11}, + [2660] = {.lex_state = 39, .external_lex_state = 9}, + [2661] = {.lex_state = 39, .external_lex_state = 9}, + [2662] = {.lex_state = 39, .external_lex_state = 12}, [2663] = {.lex_state = 39, .external_lex_state = 9}, - [2664] = {.lex_state = 39, .external_lex_state = 8}, - [2665] = {.lex_state = 39, .external_lex_state = 8}, - [2666] = {.lex_state = 39, .external_lex_state = 9}, - [2667] = {.lex_state = 39, .external_lex_state = 9}, - [2668] = {.lex_state = 39, .external_lex_state = 9}, - [2669] = {.lex_state = 39, .external_lex_state = 8}, - [2670] = {.lex_state = 39, .external_lex_state = 12}, + [2664] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 12}, + [2669] = {.lex_state = 39, .external_lex_state = 12}, + [2670] = {.lex_state = 39, .external_lex_state = 11}, [2671] = {.lex_state = 39, .external_lex_state = 12}, [2672] = {.lex_state = 39, .external_lex_state = 12}, - [2673] = {.lex_state = 39, .external_lex_state = 8}, - [2674] = {.lex_state = 39, .external_lex_state = 8}, - [2675] = {.lex_state = 39, .external_lex_state = 8}, + [2673] = {.lex_state = 39, .external_lex_state = 12}, + [2674] = {.lex_state = 39, .external_lex_state = 9}, + [2675] = {.lex_state = 39, .external_lex_state = 10}, [2676] = {.lex_state = 39, .external_lex_state = 9}, - [2677] = {.lex_state = 39, .external_lex_state = 8}, - [2678] = {.lex_state = 3, .external_lex_state = 10}, - [2679] = {.lex_state = 39, .external_lex_state = 12}, - [2680] = {.lex_state = 39, .external_lex_state = 8}, - [2681] = {.lex_state = 3, .external_lex_state = 10}, + [2677] = {.lex_state = 39, .external_lex_state = 9}, + [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}, [2682] = {.lex_state = 39, .external_lex_state = 12}, - [2683] = {.lex_state = 39, .external_lex_state = 8}, - [2684] = {.lex_state = 3, .external_lex_state = 10}, - [2685] = {.lex_state = 3, .external_lex_state = 10}, - [2686] = {.lex_state = 3, .external_lex_state = 10}, + [2683] = {.lex_state = 39, .external_lex_state = 12}, + [2684] = {.lex_state = 39, .external_lex_state = 12}, + [2685] = {.lex_state = 39, .external_lex_state = 8}, + [2686] = {.lex_state = 39, .external_lex_state = 8}, [2687] = {.lex_state = 39, .external_lex_state = 12}, [2688] = {.lex_state = 39, .external_lex_state = 8}, [2689] = {.lex_state = 39, .external_lex_state = 12}, [2690] = {.lex_state = 39, .external_lex_state = 8}, - [2691] = {.lex_state = 39, .external_lex_state = 8}, + [2691] = {.lex_state = 39, .external_lex_state = 9}, [2692] = {.lex_state = 39, .external_lex_state = 12}, - [2693] = {.lex_state = 39, .external_lex_state = 8}, + [2693] = {.lex_state = 3, .external_lex_state = 10}, [2694] = {.lex_state = 39, .external_lex_state = 12}, - [2695] = {.lex_state = 39, .external_lex_state = 9}, + [2695] = {.lex_state = 3, .external_lex_state = 10}, [2696] = {.lex_state = 3, .external_lex_state = 10}, [2697] = {.lex_state = 3, .external_lex_state = 10}, - [2698] = {.lex_state = 39, .external_lex_state = 8}, + [2698] = {.lex_state = 3, .external_lex_state = 10}, [2699] = {.lex_state = 39, .external_lex_state = 8}, [2700] = {.lex_state = 39, .external_lex_state = 8}, [2701] = {.lex_state = 3, .external_lex_state = 10}, - [2702] = {.lex_state = 39, .external_lex_state = 11}, - [2703] = {.lex_state = 39, .external_lex_state = 10}, - [2704] = {.lex_state = 39, .external_lex_state = 11}, - [2705] = {.lex_state = 39, .external_lex_state = 12}, - [2706] = {.lex_state = 39, .external_lex_state = 11}, - [2707] = {.lex_state = 39, .external_lex_state = 11}, - [2708] = {.lex_state = 39, .external_lex_state = 11}, - [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 = 10}, - [2713] = {.lex_state = 39, .external_lex_state = 10}, - [2714] = {.lex_state = 39, .external_lex_state = 12}, + [2702] = {.lex_state = 39, .external_lex_state = 12}, + [2703] = {.lex_state = 39, .external_lex_state = 9}, + [2704] = {.lex_state = 39, .external_lex_state = 9}, + [2705] = {.lex_state = 39, .external_lex_state = 9}, + [2706] = {.lex_state = 39, .external_lex_state = 8}, + [2707] = {.lex_state = 39, .external_lex_state = 9}, + [2708] = {.lex_state = 39, .external_lex_state = 8}, + [2709] = {.lex_state = 39, .external_lex_state = 8}, + [2710] = {.lex_state = 3, .external_lex_state = 10}, + [2711] = {.lex_state = 39, .external_lex_state = 8}, + [2712] = {.lex_state = 39, .external_lex_state = 8}, + [2713] = {.lex_state = 3, .external_lex_state = 10}, + [2714] = {.lex_state = 3, .external_lex_state = 10}, [2715] = {.lex_state = 39, .external_lex_state = 12}, - [2716] = {.lex_state = 39, .external_lex_state = 10}, - [2717] = {.lex_state = 39, .external_lex_state = 12}, - [2718] = {.lex_state = 39, .external_lex_state = 12}, - [2719] = {.lex_state = 39, .external_lex_state = 11}, - [2720] = {.lex_state = 39, .external_lex_state = 11}, - [2721] = {.lex_state = 39, .external_lex_state = 9}, - [2722] = {.lex_state = 39, .external_lex_state = 11}, - [2723] = {.lex_state = 39, .external_lex_state = 10}, - [2724] = {.lex_state = 39, .external_lex_state = 9}, - [2725] = {.lex_state = 39, .external_lex_state = 12}, - [2726] = {.lex_state = 39, .external_lex_state = 9}, - [2727] = {.lex_state = 39, .external_lex_state = 10}, - [2728] = {.lex_state = 39, .external_lex_state = 12}, - [2729] = {.lex_state = 39, .external_lex_state = 9}, - [2730] = {.lex_state = 39, .external_lex_state = 12}, - [2731] = {.lex_state = 39, .external_lex_state = 11}, - [2732] = {.lex_state = 39, .external_lex_state = 9}, - [2733] = {.lex_state = 39, .external_lex_state = 9}, - [2734] = {.lex_state = 39, .external_lex_state = 11}, + [2716] = {.lex_state = 39, .external_lex_state = 8}, + [2717] = {.lex_state = 39, .external_lex_state = 8}, + [2718] = {.lex_state = 39, .external_lex_state = 8}, + [2719] = {.lex_state = 39, .external_lex_state = 8}, + [2720] = {.lex_state = 3, .external_lex_state = 10}, + [2721] = {.lex_state = 39, .external_lex_state = 12}, + [2722] = {.lex_state = 39, .external_lex_state = 8}, + [2723] = {.lex_state = 39, .external_lex_state = 9}, + [2724] = {.lex_state = 3, .external_lex_state = 10}, + [2725] = {.lex_state = 3, .external_lex_state = 10}, + [2726] = {.lex_state = 39, .external_lex_state = 8}, + [2727] = {.lex_state = 39, .external_lex_state = 8}, + [2728] = {.lex_state = 39, .external_lex_state = 11}, + [2729] = {.lex_state = 39, .external_lex_state = 11}, + [2730] = {.lex_state = 39, .external_lex_state = 10}, + [2731] = {.lex_state = 39, .external_lex_state = 12}, + [2732] = {.lex_state = 39, .external_lex_state = 11}, + [2733] = {.lex_state = 39, .external_lex_state = 11}, + [2734] = {.lex_state = 39, .external_lex_state = 12}, [2735] = {.lex_state = 39, .external_lex_state = 11}, [2736] = {.lex_state = 39, .external_lex_state = 10}, - [2737] = {.lex_state = 39, .external_lex_state = 10}, - [2738] = {.lex_state = 39, .external_lex_state = 12}, - [2739] = {.lex_state = 39, .external_lex_state = 10}, - [2740] = {.lex_state = 39, .external_lex_state = 11}, + [2737] = {.lex_state = 39, .external_lex_state = 12}, + [2738] = {.lex_state = 39, .external_lex_state = 10}, + [2739] = {.lex_state = 39, .external_lex_state = 12}, + [2740] = {.lex_state = 39, .external_lex_state = 9}, [2741] = {.lex_state = 39, .external_lex_state = 11}, [2742] = {.lex_state = 39, .external_lex_state = 9}, - [2743] = {.lex_state = 39, .external_lex_state = 10}, + [2743] = {.lex_state = 39, .external_lex_state = 11}, [2744] = {.lex_state = 39, .external_lex_state = 11}, [2745] = {.lex_state = 39, .external_lex_state = 9}, [2746] = {.lex_state = 39, .external_lex_state = 12}, [2747] = {.lex_state = 39, .external_lex_state = 11}, [2748] = {.lex_state = 39, .external_lex_state = 9}, - [2749] = {.lex_state = 39, .external_lex_state = 12}, - [2750] = {.lex_state = 39, .external_lex_state = 10}, - [2751] = {.lex_state = 39, .external_lex_state = 9}, - [2752] = {.lex_state = 39, .external_lex_state = 9}, - [2753] = {.lex_state = 39, .external_lex_state = 9}, + [2749] = {.lex_state = 3, .external_lex_state = 10}, + [2750] = {.lex_state = 39, .external_lex_state = 9}, + [2751] = {.lex_state = 39, .external_lex_state = 12}, + [2752] = {.lex_state = 39, .external_lex_state = 10}, + [2753] = {.lex_state = 39, .external_lex_state = 11}, [2754] = {.lex_state = 39, .external_lex_state = 10}, - [2755] = {.lex_state = 39, .external_lex_state = 9}, - [2756] = {.lex_state = 39, .external_lex_state = 12}, - [2757] = {.lex_state = 39, .external_lex_state = 9}, + [2755] = {.lex_state = 39, .external_lex_state = 10}, + [2756] = {.lex_state = 39, .external_lex_state = 11}, + [2757] = {.lex_state = 39, .external_lex_state = 12}, [2758] = {.lex_state = 39, .external_lex_state = 12}, - [2759] = {.lex_state = 39, .external_lex_state = 10}, - [2760] = {.lex_state = 39, .external_lex_state = 9}, - [2761] = {.lex_state = 39, .external_lex_state = 12}, - [2762] = {.lex_state = 39, .external_lex_state = 11}, - [2763] = {.lex_state = 39, .external_lex_state = 10}, - [2764] = {.lex_state = 39, .external_lex_state = 10}, + [2759] = {.lex_state = 39, .external_lex_state = 9}, + [2760] = {.lex_state = 39, .external_lex_state = 11}, + [2761] = {.lex_state = 39, .external_lex_state = 10}, + [2762] = {.lex_state = 39, .external_lex_state = 12}, + [2763] = {.lex_state = 39, .external_lex_state = 9}, + [2764] = {.lex_state = 39, .external_lex_state = 9}, [2765] = {.lex_state = 39, .external_lex_state = 11}, [2766] = {.lex_state = 39, .external_lex_state = 11}, - [2767] = {.lex_state = 39, .external_lex_state = 8}, - [2768] = {.lex_state = 39, .external_lex_state = 10}, + [2767] = {.lex_state = 39, .external_lex_state = 12}, + [2768] = {.lex_state = 39, .external_lex_state = 9}, [2769] = {.lex_state = 39, .external_lex_state = 12}, - [2770] = {.lex_state = 39, .external_lex_state = 12}, - [2771] = {.lex_state = 39, .external_lex_state = 11}, - [2772] = {.lex_state = 39, .external_lex_state = 10}, - [2773] = {.lex_state = 39, .external_lex_state = 10}, - [2774] = {.lex_state = 39, .external_lex_state = 11}, - [2775] = {.lex_state = 39, .external_lex_state = 10}, - [2776] = {.lex_state = 39, .external_lex_state = 11}, - [2777] = {.lex_state = 39, .external_lex_state = 12}, + [2770] = {.lex_state = 39, .external_lex_state = 11}, + [2771] = {.lex_state = 39, .external_lex_state = 9}, + [2772] = {.lex_state = 39, .external_lex_state = 11}, + [2773] = {.lex_state = 39, .external_lex_state = 12}, + [2774] = {.lex_state = 39, .external_lex_state = 10}, + [2775] = {.lex_state = 39, .external_lex_state = 9}, + [2776] = {.lex_state = 39, .external_lex_state = 10}, + [2777] = {.lex_state = 39, .external_lex_state = 9}, [2778] = {.lex_state = 39, .external_lex_state = 10}, - [2779] = {.lex_state = 39, .external_lex_state = 11}, - [2780] = {.lex_state = 39, .external_lex_state = 10}, - [2781] = {.lex_state = 39, .external_lex_state = 11}, - [2782] = {.lex_state = 39, .external_lex_state = 9}, - [2783] = {.lex_state = 39, .external_lex_state = 12}, - [2784] = {.lex_state = 39, .external_lex_state = 10}, - [2785] = {.lex_state = 39, .external_lex_state = 11}, - [2786] = {.lex_state = 39, .external_lex_state = 12}, - [2787] = {.lex_state = 39, .external_lex_state = 10}, + [2779] = {.lex_state = 39, .external_lex_state = 9}, + [2780] = {.lex_state = 39, .external_lex_state = 12}, + [2781] = {.lex_state = 39, .external_lex_state = 9}, + [2782] = {.lex_state = 39, .external_lex_state = 12}, + [2783] = {.lex_state = 39, .external_lex_state = 10}, + [2784] = {.lex_state = 39, .external_lex_state = 11}, + [2785] = {.lex_state = 39, .external_lex_state = 9}, + [2786] = {.lex_state = 39, .external_lex_state = 9}, + [2787] = {.lex_state = 39, .external_lex_state = 9}, [2788] = {.lex_state = 39, .external_lex_state = 12}, [2789] = {.lex_state = 39, .external_lex_state = 11}, [2790] = {.lex_state = 39, .external_lex_state = 10}, [2791] = {.lex_state = 39, .external_lex_state = 10}, - [2792] = {.lex_state = 39, .external_lex_state = 10}, - [2793] = {.lex_state = 39, .external_lex_state = 10}, - [2794] = {.lex_state = 39, .external_lex_state = 10}, + [2792] = {.lex_state = 39, .external_lex_state = 11}, + [2793] = {.lex_state = 39, .external_lex_state = 9}, + [2794] = {.lex_state = 39, .external_lex_state = 9}, [2795] = {.lex_state = 39, .external_lex_state = 11}, - [2796] = {.lex_state = 39, .external_lex_state = 11}, + [2796] = {.lex_state = 39, .external_lex_state = 10}, [2797] = {.lex_state = 39, .external_lex_state = 11}, [2798] = {.lex_state = 39, .external_lex_state = 12}, [2799] = {.lex_state = 39, .external_lex_state = 9}, - [2800] = {.lex_state = 39, .external_lex_state = 11}, - [2801] = {.lex_state = 39, .external_lex_state = 12}, - [2802] = {.lex_state = 39, .external_lex_state = 11}, - [2803] = {.lex_state = 3, .external_lex_state = 10}, - [2804] = {.lex_state = 39, .external_lex_state = 12}, - [2805] = {.lex_state = 3, .external_lex_state = 10}, - [2806] = {.lex_state = 39, .external_lex_state = 9}, - [2807] = {.lex_state = 39, .external_lex_state = 11}, - [2808] = {.lex_state = 39, .external_lex_state = 11}, - [2809] = {.lex_state = 39, .external_lex_state = 11}, + [2800] = {.lex_state = 39, .external_lex_state = 10}, + [2801] = {.lex_state = 39, .external_lex_state = 10}, + [2802] = {.lex_state = 3, .external_lex_state = 10}, + [2803] = {.lex_state = 39, .external_lex_state = 11}, + [2804] = {.lex_state = 39, .external_lex_state = 11}, + [2805] = {.lex_state = 39, .external_lex_state = 12}, + [2806] = {.lex_state = 39, .external_lex_state = 11}, + [2807] = {.lex_state = 39, .external_lex_state = 10}, + [2808] = {.lex_state = 39, .external_lex_state = 12}, + [2809] = {.lex_state = 3, .external_lex_state = 10}, [2810] = {.lex_state = 39, .external_lex_state = 11}, - [2811] = {.lex_state = 39, .external_lex_state = 10}, - [2812] = {.lex_state = 39, .external_lex_state = 10}, + [2811] = {.lex_state = 39, .external_lex_state = 12}, + [2812] = {.lex_state = 39, .external_lex_state = 12}, [2813] = {.lex_state = 39, .external_lex_state = 12}, - [2814] = {.lex_state = 3, .external_lex_state = 10}, - [2815] = {.lex_state = 3, .external_lex_state = 10}, - [2816] = {.lex_state = 39, .external_lex_state = 11}, - [2817] = {.lex_state = 3, .external_lex_state = 10}, - [2818] = {.lex_state = 39, .external_lex_state = 11}, - [2819] = {.lex_state = 39, .external_lex_state = 12}, - [2820] = {.lex_state = 39, .external_lex_state = 10}, - [2821] = {.lex_state = 39, .external_lex_state = 10}, + [2814] = {.lex_state = 39, .external_lex_state = 11}, + [2815] = {.lex_state = 39, .external_lex_state = 12}, + [2816] = {.lex_state = 39, .external_lex_state = 10}, + [2817] = {.lex_state = 39, .external_lex_state = 10}, + [2818] = {.lex_state = 39, .external_lex_state = 8}, + [2819] = {.lex_state = 39, .external_lex_state = 11}, + [2820] = {.lex_state = 39, .external_lex_state = 12}, + [2821] = {.lex_state = 39, .external_lex_state = 12}, [2822] = {.lex_state = 39, .external_lex_state = 11}, - [2823] = {.lex_state = 39, .external_lex_state = 9}, - [2824] = {.lex_state = 39, .external_lex_state = 12}, - [2825] = {.lex_state = 39, .external_lex_state = 11}, - [2826] = {.lex_state = 39, .external_lex_state = 9}, - [2827] = {.lex_state = 39, .external_lex_state = 10}, + [2823] = {.lex_state = 39, .external_lex_state = 11}, + [2824] = {.lex_state = 3, .external_lex_state = 10}, + [2825] = {.lex_state = 39, .external_lex_state = 10}, + [2826] = {.lex_state = 39, .external_lex_state = 10}, + [2827] = {.lex_state = 39, .external_lex_state = 12}, [2828] = {.lex_state = 39, .external_lex_state = 12}, [2829] = {.lex_state = 39, .external_lex_state = 12}, - [2830] = {.lex_state = 39, .external_lex_state = 11}, + [2830] = {.lex_state = 39, .external_lex_state = 10}, [2831] = {.lex_state = 39, .external_lex_state = 11}, - [2832] = {.lex_state = 39, .external_lex_state = 11}, + [2832] = {.lex_state = 39, .external_lex_state = 9}, [2833] = {.lex_state = 39, .external_lex_state = 10}, - [2834] = {.lex_state = 39, .external_lex_state = 10}, - [2835] = {.lex_state = 39, .external_lex_state = 12}, - [2836] = {.lex_state = 39, .external_lex_state = 12}, - [2837] = {.lex_state = 39, .external_lex_state = 11}, + [2834] = {.lex_state = 39, .external_lex_state = 11}, + [2835] = {.lex_state = 39, .external_lex_state = 11}, + [2836] = {.lex_state = 39, .external_lex_state = 11}, + [2837] = {.lex_state = 39, .external_lex_state = 12}, [2838] = {.lex_state = 39, .external_lex_state = 11}, - [2839] = {.lex_state = 39, .external_lex_state = 9}, - [2840] = {.lex_state = 39, .external_lex_state = 11}, - [2841] = {.lex_state = 39, .external_lex_state = 10}, + [2839] = {.lex_state = 39, .external_lex_state = 10}, + [2840] = {.lex_state = 39, .external_lex_state = 12}, + [2841] = {.lex_state = 39, .external_lex_state = 11}, [2842] = {.lex_state = 39, .external_lex_state = 11}, [2843] = {.lex_state = 39, .external_lex_state = 12}, - [2844] = {.lex_state = 39, .external_lex_state = 12}, - [2845] = {.lex_state = 39, .external_lex_state = 12}, - [2846] = {.lex_state = 39, .external_lex_state = 11}, - [2847] = {.lex_state = 39, .external_lex_state = 10}, + [2844] = {.lex_state = 39, .external_lex_state = 11}, + [2845] = {.lex_state = 39, .external_lex_state = 11}, + [2846] = {.lex_state = 39, .external_lex_state = 9}, + [2847] = {.lex_state = 39, .external_lex_state = 12}, [2848] = {.lex_state = 39, .external_lex_state = 10}, [2849] = {.lex_state = 39, .external_lex_state = 11}, [2850] = {.lex_state = 39, .external_lex_state = 10}, - [2851] = {.lex_state = 39, .external_lex_state = 9}, - [2852] = {.lex_state = 39, .external_lex_state = 10}, - [2853] = {.lex_state = 39, .external_lex_state = 10}, - [2854] = {.lex_state = 39, .external_lex_state = 10}, + [2851] = {.lex_state = 39, .external_lex_state = 11}, + [2852] = {.lex_state = 39, .external_lex_state = 12}, + [2853] = {.lex_state = 39, .external_lex_state = 9}, + [2854] = {.lex_state = 3, .external_lex_state = 10}, [2855] = {.lex_state = 39, .external_lex_state = 10}, - [2856] = {.lex_state = 39, .external_lex_state = 10}, - [2857] = {.lex_state = 39, .external_lex_state = 9}, - [2858] = {.lex_state = 39, .external_lex_state = 9}, - [2859] = {.lex_state = 39, .external_lex_state = 10}, - [2860] = {.lex_state = 39, .external_lex_state = 11}, - [2861] = {.lex_state = 39, .external_lex_state = 10}, + [2856] = {.lex_state = 39, .external_lex_state = 9}, + [2857] = {.lex_state = 39, .external_lex_state = 10}, + [2858] = {.lex_state = 39, .external_lex_state = 11}, + [2859] = {.lex_state = 39, .external_lex_state = 11}, + [2860] = {.lex_state = 39, .external_lex_state = 10}, + [2861] = {.lex_state = 39, .external_lex_state = 12}, [2862] = {.lex_state = 39, .external_lex_state = 11}, - [2863] = {.lex_state = 39, .external_lex_state = 10}, - [2864] = {.lex_state = 39, .external_lex_state = 12}, - [2865] = {.lex_state = 39, .external_lex_state = 11}, - [2866] = {.lex_state = 39, .external_lex_state = 9}, - [2867] = {.lex_state = 39, .external_lex_state = 12}, + [2863] = {.lex_state = 39, .external_lex_state = 11}, + [2864] = {.lex_state = 39, .external_lex_state = 11}, + [2865] = {.lex_state = 39, .external_lex_state = 10}, + [2866] = {.lex_state = 39, .external_lex_state = 11}, + [2867] = {.lex_state = 39, .external_lex_state = 11}, [2868] = {.lex_state = 39, .external_lex_state = 11}, - [2869] = {.lex_state = 39, .external_lex_state = 11}, - [2870] = {.lex_state = 39, .external_lex_state = 11}, - [2871] = {.lex_state = 39, .external_lex_state = 9}, - [2872] = {.lex_state = 39, .external_lex_state = 11}, - [2873] = {.lex_state = 39, .external_lex_state = 10}, - [2874] = {.lex_state = 39, .external_lex_state = 9}, - [2875] = {.lex_state = 39, .external_lex_state = 10}, + [2869] = {.lex_state = 39, .external_lex_state = 12}, + [2870] = {.lex_state = 39, .external_lex_state = 9}, + [2871] = {.lex_state = 39, .external_lex_state = 10}, + [2872] = {.lex_state = 39, .external_lex_state = 12}, + [2873] = {.lex_state = 39, .external_lex_state = 11}, + [2874] = {.lex_state = 39, .external_lex_state = 11}, + [2875] = {.lex_state = 39, .external_lex_state = 12}, [2876] = {.lex_state = 39, .external_lex_state = 10}, - [2877] = {.lex_state = 39, .external_lex_state = 9}, - [2878] = {.lex_state = 39, .external_lex_state = 9}, + [2877] = {.lex_state = 39, .external_lex_state = 11}, + [2878] = {.lex_state = 39, .external_lex_state = 10}, [2879] = {.lex_state = 39, .external_lex_state = 10}, [2880] = {.lex_state = 39, .external_lex_state = 10}, [2881] = {.lex_state = 39, .external_lex_state = 10}, - [2882] = {.lex_state = 39, .external_lex_state = 9}, - [2883] = {.lex_state = 39, .external_lex_state = 9}, + [2882] = {.lex_state = 39, .external_lex_state = 10}, + [2883] = {.lex_state = 39, .external_lex_state = 11}, [2884] = {.lex_state = 39, .external_lex_state = 11}, [2885] = {.lex_state = 39, .external_lex_state = 10}, [2886] = {.lex_state = 39, .external_lex_state = 10}, [2887] = {.lex_state = 39, .external_lex_state = 10}, - [2888] = {.lex_state = 39, .external_lex_state = 9}, - [2889] = {.lex_state = 39, .external_lex_state = 9}, - [2890] = {.lex_state = 39, .external_lex_state = 2}, - [2891] = {.lex_state = 39, .external_lex_state = 10}, - [2892] = {.lex_state = 39, .external_lex_state = 9}, + [2888] = {.lex_state = 39, .external_lex_state = 10}, + [2889] = {.lex_state = 39, .external_lex_state = 10}, + [2890] = {.lex_state = 39, .external_lex_state = 10}, + [2891] = {.lex_state = 39, .external_lex_state = 9}, + [2892] = {.lex_state = 39, .external_lex_state = 10}, [2893] = {.lex_state = 39, .external_lex_state = 10}, - [2894] = {.lex_state = 39, .external_lex_state = 9}, - [2895] = {.lex_state = 39, .external_lex_state = 8}, - [2896] = {.lex_state = 39, .external_lex_state = 11}, - [2897] = {.lex_state = 39, .external_lex_state = 2}, + [2894] = {.lex_state = 39, .external_lex_state = 10}, + [2895] = {.lex_state = 39, .external_lex_state = 10}, + [2896] = {.lex_state = 39, .external_lex_state = 2}, + [2897] = {.lex_state = 39, .external_lex_state = 9}, [2898] = {.lex_state = 39, .external_lex_state = 9}, [2899] = {.lex_state = 39, .external_lex_state = 10}, - [2900] = {.lex_state = 39, .external_lex_state = 12}, - [2901] = {.lex_state = 39, .external_lex_state = 9}, - [2902] = {.lex_state = 39, .external_lex_state = 9}, - [2903] = {.lex_state = 39, .external_lex_state = 9}, - [2904] = {.lex_state = 39, .external_lex_state = 9}, - [2905] = {.lex_state = 39, .external_lex_state = 9}, - [2906] = {.lex_state = 39, .external_lex_state = 9}, + [2900] = {.lex_state = 39, .external_lex_state = 9}, + [2901] = {.lex_state = 39, .external_lex_state = 10}, + [2902] = {.lex_state = 39, .external_lex_state = 10}, + [2903] = {.lex_state = 39, .external_lex_state = 10}, + [2904] = {.lex_state = 39, .external_lex_state = 10}, + [2905] = {.lex_state = 39, .external_lex_state = 10}, + [2906] = {.lex_state = 39, .external_lex_state = 11}, [2907] = {.lex_state = 39, .external_lex_state = 9}, - [2908] = {.lex_state = 39, .external_lex_state = 10}, + [2908] = {.lex_state = 39, .external_lex_state = 9}, [2909] = {.lex_state = 39, .external_lex_state = 10}, - [2910] = {.lex_state = 39, .external_lex_state = 9}, - [2911] = {.lex_state = 39, .external_lex_state = 9}, - [2912] = {.lex_state = 39, .external_lex_state = 2}, - [2913] = {.lex_state = 39, .external_lex_state = 10}, + [2910] = {.lex_state = 39, .external_lex_state = 10}, + [2911] = {.lex_state = 39, .external_lex_state = 11}, + [2912] = {.lex_state = 39, .external_lex_state = 9}, + [2913] = {.lex_state = 39, .external_lex_state = 12}, [2914] = {.lex_state = 39, .external_lex_state = 9}, [2915] = {.lex_state = 39, .external_lex_state = 9}, - [2916] = {.lex_state = 39, .external_lex_state = 9}, + [2916] = {.lex_state = 39, .external_lex_state = 2}, [2917] = {.lex_state = 39, .external_lex_state = 9}, - [2918] = {.lex_state = 39, .external_lex_state = 10}, - [2919] = {.lex_state = 39, .external_lex_state = 8}, - [2920] = {.lex_state = 39, .external_lex_state = 10}, + [2918] = {.lex_state = 39, .external_lex_state = 9}, + [2919] = {.lex_state = 39, .external_lex_state = 9}, + [2920] = {.lex_state = 39, .external_lex_state = 9}, [2921] = {.lex_state = 39, .external_lex_state = 10}, - [2922] = {.lex_state = 39, .external_lex_state = 2}, - [2923] = {.lex_state = 39, .external_lex_state = 9}, - [2924] = {.lex_state = 39, .external_lex_state = 9}, - [2925] = {.lex_state = 39, .external_lex_state = 9}, - [2926] = {.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 = 11}, + [2925] = {.lex_state = 39, .external_lex_state = 2}, + [2926] = {.lex_state = 39, .external_lex_state = 10}, [2927] = {.lex_state = 39, .external_lex_state = 9}, - [2928] = {.lex_state = 39, .external_lex_state = 9}, + [2928] = {.lex_state = 39, .external_lex_state = 10}, [2929] = {.lex_state = 39, .external_lex_state = 9}, [2930] = {.lex_state = 39, .external_lex_state = 9}, [2931] = {.lex_state = 39, .external_lex_state = 9}, [2932] = {.lex_state = 39, .external_lex_state = 9}, [2933] = {.lex_state = 39, .external_lex_state = 9}, - [2934] = {.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 = 11}, + [2936] = {.lex_state = 39, .external_lex_state = 9}, [2937] = {.lex_state = 39, .external_lex_state = 9}, [2938] = {.lex_state = 39, .external_lex_state = 9}, - [2939] = {.lex_state = 39, .external_lex_state = 12}, - [2940] = {.lex_state = 39, .external_lex_state = 9}, - [2941] = {.lex_state = 39, .external_lex_state = 8}, - [2942] = {.lex_state = 39, .external_lex_state = 8}, + [2939] = {.lex_state = 39, .external_lex_state = 8}, + [2940] = {.lex_state = 39, .external_lex_state = 10}, + [2941] = {.lex_state = 39, .external_lex_state = 10}, + [2942] = {.lex_state = 39, .external_lex_state = 2}, [2943] = {.lex_state = 39, .external_lex_state = 9}, [2944] = {.lex_state = 39, .external_lex_state = 9}, [2945] = {.lex_state = 39, .external_lex_state = 10}, - [2946] = {.lex_state = 39, .external_lex_state = 10}, - [2947] = {.lex_state = 39, .external_lex_state = 8}, + [2946] = {.lex_state = 39, .external_lex_state = 9}, + [2947] = {.lex_state = 39, .external_lex_state = 11}, [2948] = {.lex_state = 39, .external_lex_state = 10}, - [2949] = {.lex_state = 39, .external_lex_state = 12}, - [2950] = {.lex_state = 39, .external_lex_state = 12}, - [2951] = {.lex_state = 39, .external_lex_state = 10}, - [2952] = {.lex_state = 39, .external_lex_state = 12}, - [2953] = {.lex_state = 39, .external_lex_state = 10}, + [2949] = {.lex_state = 39, .external_lex_state = 8}, + [2950] = {.lex_state = 39, .external_lex_state = 9}, + [2951] = {.lex_state = 39, .external_lex_state = 9}, + [2952] = {.lex_state = 39, .external_lex_state = 9}, + [2953] = {.lex_state = 39, .external_lex_state = 9}, [2954] = {.lex_state = 39, .external_lex_state = 10}, - [2955] = {.lex_state = 39, .external_lex_state = 11}, - [2956] = {.lex_state = 68, .external_lex_state = 9}, - [2957] = {.lex_state = 39, .external_lex_state = 10}, - [2958] = {.lex_state = 39, .external_lex_state = 10}, - [2959] = {.lex_state = 39, .external_lex_state = 11}, - [2960] = {.lex_state = 39, .external_lex_state = 12}, + [2955] = {.lex_state = 39, .external_lex_state = 9}, + [2956] = {.lex_state = 39, .external_lex_state = 9}, + [2957] = {.lex_state = 39, .external_lex_state = 9}, + [2958] = {.lex_state = 39, .external_lex_state = 9}, + [2959] = {.lex_state = 39, .external_lex_state = 9}, + [2960] = {.lex_state = 39, .external_lex_state = 9}, [2961] = {.lex_state = 39, .external_lex_state = 10}, - [2962] = {.lex_state = 39, .external_lex_state = 9}, - [2963] = {.lex_state = 39, .external_lex_state = 10}, - [2964] = {.lex_state = 39, .external_lex_state = 9}, - [2965] = {.lex_state = 39, .external_lex_state = 9}, - [2966] = {.lex_state = 68, .external_lex_state = 9}, + [2962] = {.lex_state = 39, .external_lex_state = 8}, + [2963] = {.lex_state = 39, .external_lex_state = 9}, + [2964] = {.lex_state = 39, .external_lex_state = 10}, + [2965] = {.lex_state = 39, .external_lex_state = 10}, + [2966] = {.lex_state = 39, .external_lex_state = 12}, [2967] = {.lex_state = 39, .external_lex_state = 9}, - [2968] = {.lex_state = 39, .external_lex_state = 11}, - [2969] = {.lex_state = 39, .external_lex_state = 9}, - [2970] = {.lex_state = 39, .external_lex_state = 9}, - [2971] = {.lex_state = 39, .external_lex_state = 9}, - [2972] = {.lex_state = 39, .external_lex_state = 10}, + [2968] = {.lex_state = 39, .external_lex_state = 12}, + [2969] = {.lex_state = 39, .external_lex_state = 10}, + [2970] = {.lex_state = 39, .external_lex_state = 10}, + [2971] = {.lex_state = 39, .external_lex_state = 11}, + [2972] = {.lex_state = 39, .external_lex_state = 9}, [2973] = {.lex_state = 39, .external_lex_state = 9}, - [2974] = {.lex_state = 39, .external_lex_state = 8}, + [2974] = {.lex_state = 39, .external_lex_state = 9}, [2975] = {.lex_state = 39, .external_lex_state = 9}, [2976] = {.lex_state = 39, .external_lex_state = 9}, - [2977] = {.lex_state = 39, .external_lex_state = 10}, + [2977] = {.lex_state = 39, .external_lex_state = 9}, [2978] = {.lex_state = 39, .external_lex_state = 10}, - [2979] = {.lex_state = 39, .external_lex_state = 9}, - [2980] = {.lex_state = 39, .external_lex_state = 9}, - [2981] = {.lex_state = 68, .external_lex_state = 9}, - [2982] = {.lex_state = 39, .external_lex_state = 11}, - [2983] = {.lex_state = 39, .external_lex_state = 9}, - [2984] = {.lex_state = 39, .external_lex_state = 9}, - [2985] = {.lex_state = 39, .external_lex_state = 9}, - [2986] = {.lex_state = 39, .external_lex_state = 9}, - [2987] = {.lex_state = 39, .external_lex_state = 10}, - [2988] = {.lex_state = 39, .external_lex_state = 11}, - [2989] = {.lex_state = 39, .external_lex_state = 12}, - [2990] = {.lex_state = 39, .external_lex_state = 10}, - [2991] = {.lex_state = 39, .external_lex_state = 10}, - [2992] = {.lex_state = 39, .external_lex_state = 9}, - [2993] = {.lex_state = 39, .external_lex_state = 8}, - [2994] = {.lex_state = 39, .external_lex_state = 10}, - [2995] = {.lex_state = 39, .external_lex_state = 9}, + [2979] = {.lex_state = 39, .external_lex_state = 10}, + [2980] = {.lex_state = 39, .external_lex_state = 11}, + [2981] = {.lex_state = 39, .external_lex_state = 9}, + [2982] = {.lex_state = 39, .external_lex_state = 10}, + [2983] = {.lex_state = 68, .external_lex_state = 9}, + [2984] = {.lex_state = 39, .external_lex_state = 10}, + [2985] = {.lex_state = 39, .external_lex_state = 10}, + [2986] = {.lex_state = 39, .external_lex_state = 12}, + [2987] = {.lex_state = 39, .external_lex_state = 9}, + [2988] = {.lex_state = 68, .external_lex_state = 9}, + [2989] = {.lex_state = 39, .external_lex_state = 10}, + [2990] = {.lex_state = 39, .external_lex_state = 9}, + [2991] = {.lex_state = 39, .external_lex_state = 11}, + [2992] = {.lex_state = 39, .external_lex_state = 12}, + [2993] = {.lex_state = 39, .external_lex_state = 9}, + [2994] = {.lex_state = 39, .external_lex_state = 9}, + [2995] = {.lex_state = 39, .external_lex_state = 10}, [2996] = {.lex_state = 39, .external_lex_state = 10}, - [2997] = {.lex_state = 39, .external_lex_state = 9}, - [2998] = {.lex_state = 39, .external_lex_state = 9}, + [2997] = {.lex_state = 39, .external_lex_state = 10}, + [2998] = {.lex_state = 39, .external_lex_state = 11}, [2999] = {.lex_state = 39, .external_lex_state = 9}, - [3000] = {.lex_state = 39, .external_lex_state = 12}, - [3001] = {.lex_state = 39, .external_lex_state = 11}, + [3000] = {.lex_state = 39, .external_lex_state = 9}, + [3001] = {.lex_state = 39, .external_lex_state = 10}, [3002] = {.lex_state = 39, .external_lex_state = 9}, [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 = 68, .external_lex_state = 9}, - [3007] = {.lex_state = 39, .external_lex_state = 8}, - [3008] = {.lex_state = 39, .external_lex_state = 10}, + [3004] = {.lex_state = 39, .external_lex_state = 9}, + [3005] = {.lex_state = 39, .external_lex_state = 10}, + [3006] = {.lex_state = 39, .external_lex_state = 10}, + [3007] = {.lex_state = 68, .external_lex_state = 9}, + [3008] = {.lex_state = 39, .external_lex_state = 11}, [3009] = {.lex_state = 39, .external_lex_state = 9}, [3010] = {.lex_state = 39, .external_lex_state = 9}, [3011] = {.lex_state = 39, .external_lex_state = 10}, - [3012] = {.lex_state = 39, .external_lex_state = 10}, - [3013] = {.lex_state = 39, .external_lex_state = 8}, - [3014] = {.lex_state = 39, .external_lex_state = 12}, - [3015] = {.lex_state = 39, .external_lex_state = 10}, - [3016] = {.lex_state = 39, .external_lex_state = 9}, - [3017] = {.lex_state = 39, .external_lex_state = 9}, - [3018] = {.lex_state = 39, .external_lex_state = 8}, - [3019] = {.lex_state = 39, .external_lex_state = 11}, - [3020] = {.lex_state = 39, .external_lex_state = 10}, - [3021] = {.lex_state = 39, .external_lex_state = 8}, + [3012] = {.lex_state = 39, .external_lex_state = 8}, + [3013] = {.lex_state = 39, .external_lex_state = 9}, + [3014] = {.lex_state = 39, .external_lex_state = 9}, + [3015] = {.lex_state = 39, .external_lex_state = 12}, + [3016] = {.lex_state = 39, .external_lex_state = 8}, + [3017] = {.lex_state = 39, .external_lex_state = 8}, + [3018] = {.lex_state = 39, .external_lex_state = 11}, + [3019] = {.lex_state = 39, .external_lex_state = 9}, + [3020] = {.lex_state = 39, .external_lex_state = 8}, + [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 = 12}, - [3027] = {.lex_state = 68, .external_lex_state = 9}, - [3028] = {.lex_state = 39, .external_lex_state = 10}, + [3023] = {.lex_state = 39, .external_lex_state = 10}, + [3024] = {.lex_state = 39, .external_lex_state = 11}, + [3025] = {.lex_state = 39, .external_lex_state = 10}, + [3026] = {.lex_state = 39, .external_lex_state = 10}, + [3027] = {.lex_state = 39, .external_lex_state = 12}, + [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 = 11}, - [3032] = {.lex_state = 39, .external_lex_state = 8}, - [3033] = {.lex_state = 39, .external_lex_state = 9}, + [3031] = {.lex_state = 39, .external_lex_state = 10}, + [3032] = {.lex_state = 68, .external_lex_state = 9}, + [3033] = {.lex_state = 39, .external_lex_state = 10}, [3034] = {.lex_state = 39, .external_lex_state = 10}, [3035] = {.lex_state = 39, .external_lex_state = 12}, - [3036] = {.lex_state = 39, .external_lex_state = 8}, - [3037] = {.lex_state = 68, .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 = 9}, + [3036] = {.lex_state = 39, .external_lex_state = 10}, + [3037] = {.lex_state = 39, .external_lex_state = 9}, + [3038] = {.lex_state = 39, .external_lex_state = 10}, + [3039] = {.lex_state = 39, .external_lex_state = 11}, + [3040] = {.lex_state = 39, .external_lex_state = 12}, [3041] = {.lex_state = 39, .external_lex_state = 10}, - [3042] = {.lex_state = 39, .external_lex_state = 8}, - [3043] = {.lex_state = 39, .external_lex_state = 9}, - [3044] = {.lex_state = 39, .external_lex_state = 10}, - [3045] = {.lex_state = 39, .external_lex_state = 8}, + [3042] = {.lex_state = 39, .external_lex_state = 10}, + [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 = 10}, - [3048] = {.lex_state = 68, .external_lex_state = 9}, + [3048] = {.lex_state = 39, .external_lex_state = 9}, [3049] = {.lex_state = 39, .external_lex_state = 9}, - [3050] = {.lex_state = 39, .external_lex_state = 10}, - [3051] = {.lex_state = 39, .external_lex_state = 11}, - [3052] = {.lex_state = 39, .external_lex_state = 9}, - [3053] = {.lex_state = 39, .external_lex_state = 10}, - [3054] = {.lex_state = 39, .external_lex_state = 9}, - [3055] = {.lex_state = 39, .external_lex_state = 10}, - [3056] = {.lex_state = 39, .external_lex_state = 12}, + [3050] = {.lex_state = 39, .external_lex_state = 9}, + [3051] = {.lex_state = 39, .external_lex_state = 10}, + [3052] = {.lex_state = 39, .external_lex_state = 10}, + [3053] = {.lex_state = 68, .external_lex_state = 9}, + [3054] = {.lex_state = 39, .external_lex_state = 11}, + [3055] = {.lex_state = 39, .external_lex_state = 8}, + [3056] = {.lex_state = 39, .external_lex_state = 9}, [3057] = {.lex_state = 39, .external_lex_state = 9}, - [3058] = {.lex_state = 39, .external_lex_state = 9}, + [3058] = {.lex_state = 39, .external_lex_state = 10}, [3059] = {.lex_state = 39, .external_lex_state = 9}, [3060] = {.lex_state = 39, .external_lex_state = 9}, - [3061] = {.lex_state = 39, .external_lex_state = 9}, + [3061] = {.lex_state = 39, .external_lex_state = 12}, [3062] = {.lex_state = 39, .external_lex_state = 9}, - [3063] = {.lex_state = 23, .external_lex_state = 9}, - [3064] = {.lex_state = 39, .external_lex_state = 10}, - [3065] = {.lex_state = 39, .external_lex_state = 9}, - [3066] = {.lex_state = 39, .external_lex_state = 9}, + [3063] = {.lex_state = 39, .external_lex_state = 11}, + [3064] = {.lex_state = 39, .external_lex_state = 8}, + [3065] = {.lex_state = 39, .external_lex_state = 10}, + [3066] = {.lex_state = 39, .external_lex_state = 10}, [3067] = {.lex_state = 39, .external_lex_state = 12}, - [3068] = {.lex_state = 39, .external_lex_state = 9}, - [3069] = {.lex_state = 68, .external_lex_state = 9}, - [3070] = {.lex_state = 39, .external_lex_state = 11}, - [3071] = {.lex_state = 39, .external_lex_state = 9}, + [3068] = {.lex_state = 39, .external_lex_state = 10}, + [3069] = {.lex_state = 39, .external_lex_state = 10}, + [3070] = {.lex_state = 39, .external_lex_state = 10}, + [3071] = {.lex_state = 39, .external_lex_state = 10}, [3072] = {.lex_state = 39, .external_lex_state = 9}, [3073] = {.lex_state = 39, .external_lex_state = 9}, - [3074] = {.lex_state = 39, .external_lex_state = 10}, - [3075] = {.lex_state = 39, .external_lex_state = 9}, + [3074] = {.lex_state = 68, .external_lex_state = 9}, + [3075] = {.lex_state = 39, .external_lex_state = 10}, [3076] = {.lex_state = 39, .external_lex_state = 10}, - [3077] = {.lex_state = 39, .external_lex_state = 12}, - [3078] = {.lex_state = 39, .external_lex_state = 9}, + [3077] = {.lex_state = 39, .external_lex_state = 10}, + [3078] = {.lex_state = 39, .external_lex_state = 10}, [3079] = {.lex_state = 39, .external_lex_state = 9}, - [3080] = {.lex_state = 39, .external_lex_state = 11}, + [3080] = {.lex_state = 39, .external_lex_state = 9}, [3081] = {.lex_state = 39, .external_lex_state = 9}, - [3082] = {.lex_state = 39, .external_lex_state = 11}, + [3082] = {.lex_state = 39, .external_lex_state = 12}, [3083] = {.lex_state = 39, .external_lex_state = 10}, - [3084] = {.lex_state = 39, .external_lex_state = 10}, - [3085] = {.lex_state = 39, .external_lex_state = 12}, - [3086] = {.lex_state = 39, .external_lex_state = 10}, - [3087] = {.lex_state = 39, .external_lex_state = 10}, - [3088] = {.lex_state = 39, .external_lex_state = 9}, - [3089] = {.lex_state = 39, .external_lex_state = 10}, + [3084] = {.lex_state = 39, .external_lex_state = 9}, + [3085] = {.lex_state = 39, .external_lex_state = 8}, + [3086] = {.lex_state = 39, .external_lex_state = 9}, + [3087] = {.lex_state = 39, .external_lex_state = 8}, + [3088] = {.lex_state = 39, .external_lex_state = 8}, + [3089] = {.lex_state = 39, .external_lex_state = 9}, [3090] = {.lex_state = 39, .external_lex_state = 11}, - [3091] = {.lex_state = 39, .external_lex_state = 10}, - [3092] = {.lex_state = 39, .external_lex_state = 9}, - [3093] = {.lex_state = 39, .external_lex_state = 11}, - [3094] = {.lex_state = 39, .external_lex_state = 12}, - [3095] = {.lex_state = 39, .external_lex_state = 9}, + [3091] = {.lex_state = 39, .external_lex_state = 9}, + [3092] = {.lex_state = 39, .external_lex_state = 10}, + [3093] = {.lex_state = 39, .external_lex_state = 10}, + [3094] = {.lex_state = 39, .external_lex_state = 8}, + [3095] = {.lex_state = 68, .external_lex_state = 9}, [3096] = {.lex_state = 39, .external_lex_state = 10}, - [3097] = {.lex_state = 39, .external_lex_state = 9}, - [3098] = {.lex_state = 39, .external_lex_state = 9}, - [3099] = {.lex_state = 39, .external_lex_state = 8}, - [3100] = {.lex_state = 39, .external_lex_state = 9}, - [3101] = {.lex_state = 39, .external_lex_state = 9}, - [3102] = {.lex_state = 39, .external_lex_state = 9}, - [3103] = {.lex_state = 39, .external_lex_state = 10}, + [3097] = {.lex_state = 39, .external_lex_state = 12}, + [3098] = {.lex_state = 23, .external_lex_state = 9}, + [3099] = {.lex_state = 39, .external_lex_state = 9}, + [3100] = {.lex_state = 39, .external_lex_state = 10}, + [3101] = {.lex_state = 39, .external_lex_state = 10}, + [3102] = {.lex_state = 39, .external_lex_state = 10}, + [3103] = {.lex_state = 39, .external_lex_state = 12}, [3104] = {.lex_state = 39, .external_lex_state = 9}, - [3105] = {.lex_state = 39, .external_lex_state = 9}, - [3106] = {.lex_state = 39, .external_lex_state = 9}, - [3107] = {.lex_state = 39, .external_lex_state = 11}, - [3108] = {.lex_state = 39, .external_lex_state = 9}, - [3109] = {.lex_state = 39, .external_lex_state = 9}, + [3105] = {.lex_state = 39, .external_lex_state = 10}, + [3106] = {.lex_state = 39, .external_lex_state = 10}, + [3107] = {.lex_state = 39, .external_lex_state = 9}, + [3108] = {.lex_state = 39, .external_lex_state = 11}, + [3109] = {.lex_state = 39, .external_lex_state = 10}, [3110] = {.lex_state = 39, .external_lex_state = 10}, - [3111] = {.lex_state = 39, .external_lex_state = 9}, - [3112] = {.lex_state = 39, .external_lex_state = 9}, - [3113] = {.lex_state = 39, .external_lex_state = 10}, - [3114] = {.lex_state = 39, .external_lex_state = 9}, + [3111] = {.lex_state = 39, .external_lex_state = 10}, + [3112] = {.lex_state = 39, .external_lex_state = 10}, + [3113] = {.lex_state = 39, .external_lex_state = 9}, + [3114] = {.lex_state = 39, .external_lex_state = 11}, [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 = 11}, + [3121] = {.lex_state = 39, .external_lex_state = 9}, [3122] = {.lex_state = 39, .external_lex_state = 9}, - [3123] = {.lex_state = 39, .external_lex_state = 10}, - [3124] = {.lex_state = 39, .external_lex_state = 10}, - [3125] = {.lex_state = 39, .external_lex_state = 8}, - [3126] = {.lex_state = 39, .external_lex_state = 10}, + [3123] = {.lex_state = 39, .external_lex_state = 9}, + [3124] = {.lex_state = 39, .external_lex_state = 9}, + [3125] = {.lex_state = 39, .external_lex_state = 10}, + [3126] = {.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 = 10}, - [3130] = {.lex_state = 39, .external_lex_state = 12}, + [3128] = {.lex_state = 39, .external_lex_state = 9}, + [3129] = {.lex_state = 39, .external_lex_state = 11}, + [3130] = {.lex_state = 39, .external_lex_state = 10}, [3131] = {.lex_state = 39, .external_lex_state = 10}, - [3132] = {.lex_state = 39, .external_lex_state = 9}, - [3133] = {.lex_state = 39, .external_lex_state = 9}, + [3132] = {.lex_state = 39, .external_lex_state = 12}, + [3133] = {.lex_state = 39, .external_lex_state = 10}, [3134] = {.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 = 8}, - [3139] = {.lex_state = 39, .external_lex_state = 9}, - [3140] = {.lex_state = 39, .external_lex_state = 8}, + [3138] = {.lex_state = 39, .external_lex_state = 9}, + [3139] = {.lex_state = 39, .external_lex_state = 10}, + [3140] = {.lex_state = 39, .external_lex_state = 10}, [3141] = {.lex_state = 39, .external_lex_state = 9}, [3142] = {.lex_state = 39, .external_lex_state = 9}, - [3143] = {.lex_state = 39, .external_lex_state = 10}, + [3143] = {.lex_state = 39, .external_lex_state = 9}, [3144] = {.lex_state = 39, .external_lex_state = 9}, [3145] = {.lex_state = 39, .external_lex_state = 9}, [3146] = {.lex_state = 39, .external_lex_state = 9}, [3147] = {.lex_state = 39, .external_lex_state = 9}, - [3148] = {.lex_state = 39, .external_lex_state = 10}, - [3149] = {.lex_state = 39, .external_lex_state = 12}, - [3150] = {.lex_state = 39, .external_lex_state = 11}, - [3151] = {.lex_state = 39, .external_lex_state = 9}, - [3152] = {.lex_state = 39, .external_lex_state = 9}, + [3148] = {.lex_state = 39, .external_lex_state = 9}, + [3149] = {.lex_state = 39, .external_lex_state = 9}, + [3150] = {.lex_state = 39, .external_lex_state = 9}, + [3151] = {.lex_state = 39, .external_lex_state = 11}, + [3152] = {.lex_state = 39, .external_lex_state = 10}, [3153] = {.lex_state = 39, .external_lex_state = 11}, [3154] = {.lex_state = 39, .external_lex_state = 9}, - [3155] = {.lex_state = 39, .external_lex_state = 9}, + [3155] = {.lex_state = 39, .external_lex_state = 8}, [3156] = {.lex_state = 39, .external_lex_state = 9}, - [3157] = {.lex_state = 39, .external_lex_state = 11}, + [3157] = {.lex_state = 39, .external_lex_state = 9}, [3158] = {.lex_state = 39, .external_lex_state = 10}, [3159] = {.lex_state = 39, .external_lex_state = 9}, - [3160] = {.lex_state = 39, .external_lex_state = 9}, - [3161] = {.lex_state = 39, .external_lex_state = 9}, + [3160] = {.lex_state = 39, .external_lex_state = 12}, + [3161] = {.lex_state = 39, .external_lex_state = 8}, [3162] = {.lex_state = 39, .external_lex_state = 9}, - [3163] = {.lex_state = 39, .external_lex_state = 9}, - [3164] = {.lex_state = 39, .external_lex_state = 9}, + [3163] = {.lex_state = 39, .external_lex_state = 12}, + [3164] = {.lex_state = 39, .external_lex_state = 12}, [3165] = {.lex_state = 39, .external_lex_state = 9}, [3166] = {.lex_state = 39, .external_lex_state = 9}, [3167] = {.lex_state = 39, .external_lex_state = 9}, - [3168] = {.lex_state = 39, .external_lex_state = 9}, - [3169] = {.lex_state = 39, .external_lex_state = 10}, + [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}, [3172] = {.lex_state = 39, .external_lex_state = 9}, - [3173] = {.lex_state = 68, .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}, + [3175] = {.lex_state = 39, .external_lex_state = 10}, [3176] = {.lex_state = 39, .external_lex_state = 9}, [3177] = {.lex_state = 39, .external_lex_state = 9}, - [3178] = {.lex_state = 39, .external_lex_state = 11}, + [3178] = {.lex_state = 39, .external_lex_state = 9}, [3179] = {.lex_state = 39, .external_lex_state = 9}, - [3180] = {.lex_state = 39, .external_lex_state = 10}, - [3181] = {.lex_state = 39, .external_lex_state = 11}, + [3180] = {.lex_state = 39, .external_lex_state = 11}, + [3181] = {.lex_state = 39, .external_lex_state = 9}, [3182] = {.lex_state = 39, .external_lex_state = 9}, - [3183] = {.lex_state = 39, .external_lex_state = 10}, - [3184] = {.lex_state = 39, .external_lex_state = 10}, - [3185] = {.lex_state = 39, .external_lex_state = 11}, - [3186] = {.lex_state = 39, .external_lex_state = 11}, + [3183] = {.lex_state = 39, .external_lex_state = 9}, + [3184] = {.lex_state = 39, .external_lex_state = 9}, + [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 = 9}, - [3190] = {.lex_state = 39, .external_lex_state = 12}, - [3191] = {.lex_state = 39, .external_lex_state = 9}, - [3192] = {.lex_state = 39, .external_lex_state = 9}, + [3190] = {.lex_state = 39, .external_lex_state = 9}, + [3191] = {.lex_state = 39, .external_lex_state = 10}, + [3192] = {.lex_state = 39, .external_lex_state = 10}, [3193] = {.lex_state = 39, .external_lex_state = 9}, - [3194] = {.lex_state = 39, .external_lex_state = 10}, - [3195] = {.lex_state = 39, .external_lex_state = 9}, - [3196] = {.lex_state = 39, .external_lex_state = 10}, - [3197] = {.lex_state = 39, .external_lex_state = 10}, - [3198] = {.lex_state = 39, .external_lex_state = 10}, - [3199] = {.lex_state = 39, .external_lex_state = 9}, - [3200] = {.lex_state = 39, .external_lex_state = 10}, - [3201] = {.lex_state = 39, .external_lex_state = 10}, - [3202] = {.lex_state = 39, .external_lex_state = 10}, - [3203] = {.lex_state = 39, .external_lex_state = 10}, + [3194] = {.lex_state = 39, .external_lex_state = 9}, + [3195] = {.lex_state = 68, .external_lex_state = 9}, + [3196] = {.lex_state = 39, .external_lex_state = 9}, + [3197] = {.lex_state = 39, .external_lex_state = 9}, + [3198] = {.lex_state = 39, .external_lex_state = 9}, + [3199] = {.lex_state = 39, .external_lex_state = 12}, + [3200] = {.lex_state = 39, .external_lex_state = 9}, + [3201] = {.lex_state = 39, .external_lex_state = 9}, + [3202] = {.lex_state = 39, .external_lex_state = 9}, + [3203] = {.lex_state = 39, .external_lex_state = 9}, [3204] = {.lex_state = 39, .external_lex_state = 11}, [3205] = {.lex_state = 39, .external_lex_state = 9}, [3206] = {.lex_state = 39, .external_lex_state = 9}, - [3207] = {.lex_state = 39, .external_lex_state = 9}, + [3207] = {.lex_state = 39, .external_lex_state = 11}, [3208] = {.lex_state = 39, .external_lex_state = 9}, - [3209] = {.lex_state = 39, .external_lex_state = 10}, + [3209] = {.lex_state = 39, .external_lex_state = 11}, [3210] = {.lex_state = 39, .external_lex_state = 9}, - [3211] = {.lex_state = 39, .external_lex_state = 9}, - [3212] = {.lex_state = 39, .external_lex_state = 9}, + [3211] = {.lex_state = 39, .external_lex_state = 11}, + [3212] = {.lex_state = 39, .external_lex_state = 11}, [3213] = {.lex_state = 39, .external_lex_state = 9}, [3214] = {.lex_state = 39, .external_lex_state = 11}, [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 = 10}, + [3218] = {.lex_state = 39, .external_lex_state = 8}, [3219] = {.lex_state = 39, .external_lex_state = 9}, [3220] = {.lex_state = 39, .external_lex_state = 9}, [3221] = {.lex_state = 39, .external_lex_state = 9}, [3222] = {.lex_state = 39, .external_lex_state = 9}, [3223] = {.lex_state = 39, .external_lex_state = 9}, - [3224] = {.lex_state = 39, .external_lex_state = 10}, - [3225] = {.lex_state = 39, .external_lex_state = 9}, + [3224] = {.lex_state = 39, .external_lex_state = 9}, + [3225] = {.lex_state = 39, .external_lex_state = 10}, [3226] = {.lex_state = 39, .external_lex_state = 9}, - [3227] = {.lex_state = 39, .external_lex_state = 10}, + [3227] = {.lex_state = 39, .external_lex_state = 9}, [3228] = {.lex_state = 39, .external_lex_state = 9}, - [3229] = {.lex_state = 39, .external_lex_state = 10}, + [3229] = {.lex_state = 39, .external_lex_state = 9}, [3230] = {.lex_state = 39, .external_lex_state = 9}, [3231] = {.lex_state = 39, .external_lex_state = 9}, - [3232] = {.lex_state = 39, .external_lex_state = 9}, + [3232] = {.lex_state = 39, .external_lex_state = 10}, [3233] = {.lex_state = 39, .external_lex_state = 9}, [3234] = {.lex_state = 39, .external_lex_state = 9}, - [3235] = {.lex_state = 39, .external_lex_state = 9}, - [3236] = {.lex_state = 39, .external_lex_state = 9}, - [3237] = {.lex_state = 39, .external_lex_state = 9}, - [3238] = {.lex_state = 39, .external_lex_state = 9}, - [3239] = {.lex_state = 39, .external_lex_state = 9}, + [3235] = {.lex_state = 39, .external_lex_state = 10}, + [3236] = {.lex_state = 39, .external_lex_state = 10}, + [3237] = {.lex_state = 39, .external_lex_state = 10}, + [3238] = {.lex_state = 39, .external_lex_state = 11}, + [3239] = {.lex_state = 39, .external_lex_state = 11}, [3240] = {.lex_state = 39, .external_lex_state = 9}, - [3241] = {.lex_state = 39, .external_lex_state = 9}, + [3241] = {.lex_state = 39, .external_lex_state = 10}, [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}, + [3244] = {.lex_state = 39, .external_lex_state = 8}, + [3245] = {.lex_state = 39, .external_lex_state = 8}, [3246] = {.lex_state = 39, .external_lex_state = 9}, [3247] = {.lex_state = 39, .external_lex_state = 9}, - [3248] = {.lex_state = 39, .external_lex_state = 9}, + [3248] = {.lex_state = 39, .external_lex_state = 8}, [3249] = {.lex_state = 39, .external_lex_state = 9}, [3250] = {.lex_state = 39, .external_lex_state = 9}, [3251] = {.lex_state = 39, .external_lex_state = 9}, - [3252] = {.lex_state = 39, .external_lex_state = 9}, + [3252] = {.lex_state = 68, .external_lex_state = 9}, [3253] = {.lex_state = 39, .external_lex_state = 9}, [3254] = {.lex_state = 39, .external_lex_state = 9}, [3255] = {.lex_state = 39, .external_lex_state = 9}, @@ -11130,6 +11171,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3289] = {.lex_state = 39, .external_lex_state = 9}, }; enum { @@ -11344,62 +11411,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(3030), - [sym__statement] = STATE(35), - [sym__simple_statements] = STATE(35), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_if_statement] = STATE(35), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(35), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [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(2236), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2340), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(35), - [aux_sym_decorated_definition_repeat1] = STATE(2236), + [sym_module] = STATE(3250), + [sym__statement] = STATE(37), + [sym__simple_statements] = STATE(37), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_if_statement] = STATE(37), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(37), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [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(2260), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2405), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(37), + [aux_sym_decorated_definition_repeat1] = STATE(2260), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -11438,62 +11506,63 @@ 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(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1767), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(35), + [sym__simple_statements] = STATE(35), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(35), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(35), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1648), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(35), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11532,62 +11601,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [3] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(2987), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3069), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11626,62 +11696,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [4] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1631), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1217), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11720,62 +11791,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [5] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3184), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1711), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11810,66 +11882,67 @@ 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), }, [6] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1211), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(35), + [sym__simple_statements] = STATE(35), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(35), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(35), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1812), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(35), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -11904,66 +11977,67 @@ 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__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, [7] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3196), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3136), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12002,62 +12076,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [8] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(2948), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1752), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12092,66 +12167,67 @@ 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), }, [9] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3209), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1708), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12186,66 +12262,67 @@ 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), }, [10] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3011), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(35), + [sym__simple_statements] = STATE(35), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(35), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(35), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1810), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(35), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12280,66 +12357,67 @@ 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), }, [11] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1207), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3033), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12374,66 +12452,67 @@ 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(73), [sym_string_start] = ACTIONS(55), }, [12] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1790), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1751), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12468,66 +12547,67 @@ 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), }, [13] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1786), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1418), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12562,66 +12642,67 @@ 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), }, [14] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3055), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(38), + [sym__simple_statements] = STATE(38), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(38), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(38), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1750), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(38), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12656,66 +12737,67 @@ 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), }, [15] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3041), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3102), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12754,62 +12836,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [16] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3029), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3225), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12848,62 +12931,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [17] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3034), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(35), + [sym__simple_statements] = STATE(35), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(35), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(35), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1772), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(35), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -12938,66 +13022,67 @@ 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), }, [18] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1754), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3237), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13032,66 +13117,67 @@ 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__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, [19] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(2977), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(35), + [sym__simple_statements] = STATE(35), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(35), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(35), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1224), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(35), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13126,66 +13212,67 @@ 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), }, [20] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1682), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3106), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13220,66 +13307,67 @@ 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__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, [21] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1781), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(2965), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13314,66 +13402,67 @@ 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(73), [sym_string_start] = ACTIONS(55), }, [22] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3183), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3036), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13412,62 +13501,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [23] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3197), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3093), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13506,62 +13596,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [24] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3110), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(2982), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13600,62 +13691,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [25] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1677), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3011), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13690,66 +13782,67 @@ 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__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, [26] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3123), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3140), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13788,62 +13881,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [27] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1434), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(35), + [sym__simple_statements] = STATE(35), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(35), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(35), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1667), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(35), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13882,62 +13976,63 @@ 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(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1756), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(35), + [sym__simple_statements] = STATE(35), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(35), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(35), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(1458), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(35), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -13972,66 +14067,67 @@ 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__dedent] = ACTIONS(71), [sym_string_start] = ACTIONS(55), }, [29] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3203), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3125), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14070,62 +14166,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [30] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3039), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(2985), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14164,62 +14261,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [31] = { - [sym__statement] = STATE(36), - [sym__simple_statements] = STATE(36), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(36), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(36), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(3103), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(36), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3023), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14258,62 +14356,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [32] = { - [sym__statement] = STATE(37), - [sym__simple_statements] = STATE(37), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(37), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(37), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1716), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(37), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3112), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14348,66 +14447,67 @@ 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(73), [sym_string_start] = ACTIONS(55), }, [33] = { - [sym__statement] = STATE(34), - [sym__simple_statements] = STATE(34), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(34), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(34), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_block] = STATE(1459), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(34), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(39), + [sym__simple_statements] = STATE(39), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(39), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(39), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_block] = STATE(3071), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(39), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14442,65 +14542,160 @@ 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__dedent] = ACTIONS(73), [sym_string_start] = ACTIONS(55), }, [34] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [sym__statement] = STATE(34), + [sym__simple_statements] = STATE(34), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(34), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(34), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(34), + [aux_sym_decorated_definition_repeat1] = STATE(2261), + [sym_identifier] = ACTIONS(77), + [anon_sym_import] = ACTIONS(80), + [anon_sym_DOT] = ACTIONS(83), + [anon_sym_assert] = ACTIONS(86), + [anon_sym_if] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_lambda] = ACTIONS(98), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_all] = ACTIONS(104), + [anon_sym_any] = ACTIONS(104), + [anon_sym_filter] = ACTIONS(104), + [anon_sym_map] = ACTIONS(104), + [anon_sym_type] = ACTIONS(107), + [anon_sym_schema] = ACTIONS(110), + [anon_sym_mixin] = ACTIONS(113), + [anon_sym_protocol] = ACTIONS(116), + [anon_sym_rule] = ACTIONS(119), + [anon_sym_check] = ACTIONS(122), + [anon_sym_AT] = ACTIONS(125), + [anon_sym_QMARK_DOT] = ACTIONS(128), + [anon_sym_not] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_TILDE] = ACTIONS(134), + [sym_integer] = ACTIONS(140), + [sym_float] = ACTIONS(143), + [sym_true] = ACTIONS(140), + [sym_false] = ACTIONS(140), + [sym_none] = ACTIONS(140), + [sym_undefined] = ACTIONS(140), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(146), + [sym_string_start] = ACTIONS(148), + }, + [35] = { + [sym__statement] = STATE(34), + [sym__simple_statements] = STATE(34), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(34), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(34), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(34), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14535,66 +14730,161 @@ 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(77), + [sym__dedent] = ACTIONS(151), [sym_string_start] = ACTIONS(55), }, - [35] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [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(2236), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2340), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2236), - [ts_builtin_sym_end] = ACTIONS(79), + [36] = { + [sym__statement] = STATE(36), + [sym__simple_statements] = STATE(36), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_if_statement] = STATE(36), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(36), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [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(2260), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2405), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(2260), + [ts_builtin_sym_end] = ACTIONS(146), + [sym_identifier] = ACTIONS(77), + [anon_sym_import] = ACTIONS(80), + [anon_sym_DOT] = ACTIONS(83), + [anon_sym_assert] = ACTIONS(86), + [anon_sym_if] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(92), + [anon_sym_LBRACK] = ACTIONS(156), + [anon_sym_lambda] = ACTIONS(98), + [anon_sym_LBRACE] = ACTIONS(101), + [anon_sym_all] = ACTIONS(104), + [anon_sym_any] = ACTIONS(104), + [anon_sym_filter] = ACTIONS(104), + [anon_sym_map] = ACTIONS(104), + [anon_sym_type] = ACTIONS(107), + [anon_sym_schema] = ACTIONS(159), + [anon_sym_mixin] = ACTIONS(162), + [anon_sym_protocol] = ACTIONS(165), + [anon_sym_rule] = ACTIONS(168), + [anon_sym_check] = ACTIONS(171), + [anon_sym_AT] = ACTIONS(125), + [anon_sym_QMARK_DOT] = ACTIONS(128), + [anon_sym_not] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DQUOTE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_TILDE] = ACTIONS(134), + [sym_integer] = ACTIONS(140), + [sym_float] = ACTIONS(143), + [sym_true] = ACTIONS(140), + [sym_false] = ACTIONS(140), + [sym_none] = ACTIONS(140), + [sym_undefined] = ACTIONS(140), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(148), + }, + [37] = { + [sym__statement] = STATE(36), + [sym__simple_statements] = STATE(36), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_if_statement] = STATE(36), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(36), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [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(2260), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2405), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(36), + [aux_sym_decorated_definition_repeat1] = STATE(2260), + [ts_builtin_sym_end] = ACTIONS(174), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14631,62 +14921,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(55), }, - [36] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [38] = { + [sym__statement] = STATE(34), + [sym__simple_statements] = STATE(34), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(34), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(34), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(34), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14721,65 +15012,66 @@ 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(81), + [sym__dedent] = ACTIONS(176), [sym_string_start] = ACTIONS(55), }, - [37] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2243), + [39] = { + [sym__statement] = STATE(34), + [sym__simple_statements] = STATE(34), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_if_statement] = STATE(34), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_schema_index_signature] = STATE(34), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [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(2261), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2395), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), + [aux_sym_module_repeat1] = STATE(34), + [aux_sym_decorated_definition_repeat1] = STATE(2261), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_DOT] = ACTIONS(13), @@ -14814,320 +15106,60 @@ 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(83), + [sym__dedent] = ACTIONS(178), [sym_string_start] = ACTIONS(55), }, - [38] = { - [sym__statement] = STATE(38), - [sym__simple_statements] = STATE(38), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_if_statement] = STATE(38), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(38), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [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(2236), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2340), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(38), - [aux_sym_decorated_definition_repeat1] = STATE(2236), - [ts_builtin_sym_end] = ACTIONS(85), - [sym_identifier] = ACTIONS(87), - [anon_sym_import] = ACTIONS(90), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_assert] = ACTIONS(96), - [anon_sym_if] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(102), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_lambda] = ACTIONS(108), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_all] = ACTIONS(114), - [anon_sym_any] = ACTIONS(114), - [anon_sym_filter] = ACTIONS(114), - [anon_sym_map] = ACTIONS(114), - [anon_sym_type] = ACTIONS(117), - [anon_sym_schema] = ACTIONS(120), - [anon_sym_mixin] = ACTIONS(123), - [anon_sym_protocol] = ACTIONS(126), - [anon_sym_rule] = ACTIONS(129), - [anon_sym_check] = ACTIONS(132), - [anon_sym_AT] = ACTIONS(135), - [anon_sym_QMARK_DOT] = ACTIONS(138), - [anon_sym_not] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(144), - [anon_sym_TILDE] = ACTIONS(144), - [sym_integer] = ACTIONS(150), - [sym_float] = ACTIONS(153), - [sym_true] = ACTIONS(150), - [sym_false] = ACTIONS(150), - [sym_none] = ACTIONS(150), - [sym_undefined] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(156), - }, - [39] = { - [sym__statement] = STATE(39), - [sym__simple_statements] = STATE(39), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_if_statement] = STATE(39), - [sym_schema_expr] = STATE(1875), - [sym_schema_index_signature] = STATE(39), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [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(2243), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2337), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), - [aux_sym_module_repeat1] = STATE(39), - [aux_sym_decorated_definition_repeat1] = STATE(2243), - [sym_identifier] = ACTIONS(87), - [anon_sym_import] = ACTIONS(90), - [anon_sym_DOT] = ACTIONS(93), - [anon_sym_assert] = ACTIONS(96), - [anon_sym_if] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(102), - [anon_sym_LBRACK] = ACTIONS(162), - [anon_sym_lambda] = ACTIONS(108), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_all] = ACTIONS(114), - [anon_sym_any] = ACTIONS(114), - [anon_sym_filter] = ACTIONS(114), - [anon_sym_map] = ACTIONS(114), - [anon_sym_type] = ACTIONS(117), - [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(135), - [anon_sym_QMARK_DOT] = ACTIONS(138), - [anon_sym_not] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(144), - [anon_sym_TILDE] = ACTIONS(144), - [sym_integer] = ACTIONS(150), - [sym_float] = ACTIONS(153), - [sym_true] = ACTIONS(150), - [sym_false] = ACTIONS(150), - [sym_none] = ACTIONS(150), - [sym_undefined] = ACTIONS(150), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(85), - [sym_string_start] = ACTIONS(156), - }, [40] = { - [sym_schema_expr] = STATE(896), - [sym_lambda_expr] = STATE(896), - [sym_quant_expr] = STATE(896), - [sym_quant_op] = STATE(2965), - [sym_dotted_name] = STATE(2452), - [sym_expression] = STATE(1152), - [sym_as_expression] = STATE(897), - [sym_selector_expression] = STATE(640), - [sym_primary_expression] = STATE(327), - [sym_paren_expression] = STATE(896), - [sym_braces_expression] = STATE(896), - [sym_not_operator] = STATE(897), - [sym_boolean_operator] = STATE(897), - [sym_long_expression] = STATE(897), - [sym_string_literal_expr] = STATE(896), - [sym_config_expr] = STATE(896), - [sym_binary_operator] = STATE(898), - [sym_unary_operator] = STATE(896), - [sym_sequence_operation] = STATE(897), - [sym_in_operation] = STATE(899), - [sym_not_in_operation] = STATE(899), - [sym_comparison_operator] = STATE(897), - [sym_select_suffix] = STATE(896), - [sym_attribute] = STATE(896), - [sym_optional_attribute] = STATE(896), - [sym_optional_attribute_declaration] = STATE(896), - [sym_optional_item] = STATE(896), - [sym_null_coalesce] = STATE(896), - [sym_subscript] = STATE(898), - [sym_call] = STATE(898), - [sym_list] = STATE(900), - [sym_dictionary] = STATE(900), - [sym_list_comprehension] = STATE(900), - [sym_dictionary_comprehension] = STATE(900), - [sym_conditional_expression] = STATE(897), - [sym_string] = STATE(896), - [aux_sym_check_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(180), - [anon_sym_import] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_assert] = ACTIONS(180), - [anon_sym_if] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(182), - [anon_sym_all] = ACTIONS(180), - [anon_sym_any] = ACTIONS(180), - [anon_sym_filter] = ACTIONS(180), - [anon_sym_map] = ACTIONS(180), - [anon_sym_type] = ACTIONS(180), - [anon_sym_schema] = ACTIONS(180), - [anon_sym_mixin] = ACTIONS(180), - [anon_sym_protocol] = ACTIONS(180), - [anon_sym_rule] = ACTIONS(180), - [anon_sym_check] = ACTIONS(180), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_QMARK_DOT] = ACTIONS(182), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [sym_integer] = ACTIONS(180), - [sym_float] = ACTIONS(182), - [sym_true] = ACTIONS(180), - [sym_false] = ACTIONS(180), - [sym_none] = ACTIONS(180), - [sym_undefined] = ACTIONS(180), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(182), - [sym_string_start] = ACTIONS(182), - }, - [41] = { - [sym__simple_statements] = STATE(1167), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2392), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [sym__simple_statements] = STATE(3232), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15149,60 +15181,61 @@ 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(186), - [sym__indent] = ACTIONS(188), + [sym__newline] = ACTIONS(182), + [sym__indent] = ACTIONS(184), [sym_string_start] = ACTIONS(55), }, - [42] = { - [sym__simple_statements] = STATE(3200), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [41] = { + [sym__simple_statements] = STATE(3110), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15224,60 +15257,61 @@ 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(186), + [sym__indent] = ACTIONS(188), [sym_string_start] = ACTIONS(55), }, - [43] = { - [sym__simple_statements] = STATE(3020), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [42] = { + [sym__simple_statements] = STATE(3031), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15299,60 +15333,61 @@ 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(194), - [sym__indent] = ACTIONS(196), + [sym__newline] = ACTIONS(190), + [sym__indent] = ACTIONS(192), [sym_string_start] = ACTIONS(55), }, - [44] = { - [sym__simple_statements] = STATE(3004), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [43] = { + [sym__simple_statements] = STATE(1789), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2503), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15374,60 +15409,137 @@ 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(198), - [sym__indent] = ACTIONS(200), + [sym__newline] = ACTIONS(194), + [sym__indent] = ACTIONS(196), [sym_string_start] = ACTIONS(55), }, + [44] = { + [sym_schema_expr] = STATE(979), + [sym_schema_instantiation] = STATE(979), + [sym_lambda_expr] = STATE(979), + [sym_quant_expr] = STATE(979), + [sym_quant_op] = STATE(3059), + [sym_dotted_name] = STATE(2496), + [sym_expression] = STATE(1164), + [sym_as_expression] = STATE(977), + [sym_selector_expression] = STATE(876), + [sym_primary_expression] = STATE(549), + [sym_paren_expression] = STATE(979), + [sym_braces_expression] = STATE(979), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_long_expression] = STATE(977), + [sym_string_literal_expr] = STATE(979), + [sym_config_expr] = STATE(979), + [sym_binary_operator] = STATE(905), + [sym_unary_operator] = STATE(979), + [sym_sequence_operation] = STATE(977), + [sym_in_operation] = STATE(906), + [sym_not_in_operation] = STATE(906), + [sym_comparison_operator] = STATE(977), + [sym_select_suffix] = STATE(979), + [sym_attribute] = STATE(979), + [sym_optional_attribute] = STATE(979), + [sym_optional_attribute_declaration] = STATE(979), + [sym_optional_item] = STATE(979), + [sym_null_coalesce] = STATE(979), + [sym_subscript] = STATE(905), + [sym_call] = STATE(881), + [sym_list] = STATE(911), + [sym_dictionary] = STATE(911), + [sym_list_comprehension] = STATE(911), + [sym_dictionary_comprehension] = STATE(911), + [sym_conditional_expression] = STATE(977), + [sym_string] = STATE(979), + [aux_sym_check_statement_repeat1] = STATE(69), + [ts_builtin_sym_end] = ACTIONS(198), + [sym_identifier] = ACTIONS(200), + [anon_sym_import] = ACTIONS(200), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_assert] = ACTIONS(200), + [anon_sym_if] = ACTIONS(200), + [anon_sym_LPAREN] = ACTIONS(198), + [anon_sym_LBRACK] = ACTIONS(198), + [anon_sym_lambda] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(198), + [anon_sym_all] = ACTIONS(200), + [anon_sym_any] = ACTIONS(200), + [anon_sym_filter] = ACTIONS(200), + [anon_sym_map] = ACTIONS(200), + [anon_sym_type] = ACTIONS(200), + [anon_sym_schema] = ACTIONS(200), + [anon_sym_mixin] = ACTIONS(200), + [anon_sym_protocol] = ACTIONS(200), + [anon_sym_rule] = ACTIONS(200), + [anon_sym_check] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_QMARK_DOT] = ACTIONS(198), + [anon_sym_not] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(198), + [anon_sym_TILDE] = ACTIONS(198), + [sym_integer] = ACTIONS(200), + [sym_float] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_none] = ACTIONS(200), + [sym_undefined] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(198), + }, [45] = { - [sym__simple_statements] = STATE(1736), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2491), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [sym__simple_statements] = STATE(3101), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15454,130 +15566,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [46] = { - [sym_schema_expr] = STATE(896), - [sym_lambda_expr] = STATE(896), - [sym_quant_expr] = STATE(896), - [sym_quant_op] = STATE(2965), - [sym_dotted_name] = STATE(2452), - [sym_expression] = STATE(1152), - [sym_as_expression] = STATE(897), - [sym_selector_expression] = STATE(640), - [sym_primary_expression] = STATE(327), - [sym_paren_expression] = STATE(896), - [sym_braces_expression] = STATE(896), - [sym_not_operator] = STATE(897), - [sym_boolean_operator] = STATE(897), - [sym_long_expression] = STATE(897), - [sym_string_literal_expr] = STATE(896), - [sym_config_expr] = STATE(896), - [sym_binary_operator] = STATE(898), - [sym_unary_operator] = STATE(896), - [sym_sequence_operation] = STATE(897), - [sym_in_operation] = STATE(899), - [sym_not_in_operation] = STATE(899), - [sym_comparison_operator] = STATE(897), - [sym_select_suffix] = STATE(896), - [sym_attribute] = STATE(896), - [sym_optional_attribute] = STATE(896), - [sym_optional_attribute_declaration] = STATE(896), - [sym_optional_item] = STATE(896), - [sym_null_coalesce] = STATE(896), - [sym_subscript] = STATE(898), - [sym_call] = STATE(898), - [sym_list] = STATE(900), - [sym_dictionary] = STATE(900), - [sym_list_comprehension] = STATE(900), - [sym_dictionary_comprehension] = STATE(900), - [sym_conditional_expression] = STATE(897), - [sym_string] = STATE(896), - [aux_sym_check_statement_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(206), - [anon_sym_import] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_assert] = ACTIONS(209), - [anon_sym_if] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_LBRACK] = ACTIONS(217), - [anon_sym_lambda] = ACTIONS(220), - [anon_sym_LBRACE] = ACTIONS(223), - [anon_sym_all] = ACTIONS(226), - [anon_sym_any] = ACTIONS(226), - [anon_sym_filter] = ACTIONS(226), - [anon_sym_map] = ACTIONS(226), - [anon_sym_type] = ACTIONS(209), - [anon_sym_schema] = ACTIONS(209), - [anon_sym_mixin] = ACTIONS(209), - [anon_sym_protocol] = ACTIONS(209), - [anon_sym_rule] = ACTIONS(209), - [anon_sym_check] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(231), - [anon_sym_not] = ACTIONS(234), - [anon_sym_PLUS] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(240), - [anon_sym_DASH] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [sym_integer] = ACTIONS(243), - [sym_float] = ACTIONS(246), - [sym_true] = ACTIONS(243), - [sym_false] = ACTIONS(243), - [sym_none] = ACTIONS(243), - [sym_undefined] = ACTIONS(243), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(229), - [sym_string_start] = ACTIONS(249), - }, - [47] = { - [sym__simple_statements] = STATE(1744), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2491), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [sym__simple_statements] = STATE(1783), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2503), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15599,60 +15637,61 @@ 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(206), + [sym__indent] = ACTIONS(208), [sym_string_start] = ACTIONS(55), }, - [48] = { - [sym__simple_statements] = STATE(1188), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2491), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [47] = { + [sym__simple_statements] = STATE(3105), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15674,60 +15713,61 @@ 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(210), + [sym__indent] = ACTIONS(212), [sym_string_start] = ACTIONS(55), }, - [49] = { - [sym__simple_statements] = STATE(2996), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [48] = { + [sym__simple_statements] = STATE(1215), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2503), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15749,60 +15789,61 @@ 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(214), + [sym__indent] = ACTIONS(216), [sym_string_start] = ACTIONS(55), }, - [50] = { - [sym__simple_statements] = STATE(3084), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [49] = { + [sym__simple_statements] = STATE(3058), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15824,60 +15865,61 @@ 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(264), - [sym__indent] = ACTIONS(266), + [sym__newline] = ACTIONS(218), + [sym__indent] = ACTIONS(220), [sym_string_start] = ACTIONS(55), }, - [51] = { - [sym__simple_statements] = STATE(3089), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [50] = { + [sym__simple_statements] = STATE(3034), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15899,60 +15941,61 @@ 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(268), - [sym__indent] = ACTIONS(270), + [sym__newline] = ACTIONS(222), + [sym__indent] = ACTIONS(224), [sym_string_start] = ACTIONS(55), }, - [52] = { - [sym__simple_statements] = STATE(3180), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [51] = { + [sym__simple_statements] = STATE(2984), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -15974,60 +16017,61 @@ 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(272), - [sym__indent] = ACTIONS(274), + [sym__newline] = ACTIONS(226), + [sym__indent] = ACTIONS(228), [sym_string_start] = ACTIONS(55), }, - [53] = { - [sym__simple_statements] = STATE(3116), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [52] = { + [sym__simple_statements] = STATE(3021), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16049,60 +16093,61 @@ 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(276), - [sym__indent] = ACTIONS(278), + [sym__newline] = ACTIONS(230), + [sym__indent] = ACTIONS(232), [sym_string_start] = ACTIONS(55), }, - [54] = { - [sym__simple_statements] = STATE(1436), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2392), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [53] = { + [sym__simple_statements] = STATE(1790), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2503), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16124,60 +16169,61 @@ 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(280), - [sym__indent] = ACTIONS(282), + [sym__newline] = ACTIONS(234), + [sym__indent] = ACTIONS(236), [sym_string_start] = ACTIONS(55), }, - [55] = { - [sym__simple_statements] = STATE(3015), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [54] = { + [sym__simple_statements] = STATE(1722), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2503), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16199,60 +16245,61 @@ 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(284), - [sym__indent] = ACTIONS(286), + [sym__newline] = ACTIONS(238), + [sym__indent] = ACTIONS(240), [sym_string_start] = ACTIONS(55), }, - [56] = { - [sym__simple_statements] = STATE(2978), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [55] = { + [sym__simple_statements] = STATE(1717), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2503), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16274,60 +16321,61 @@ 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(288), - [sym__indent] = ACTIONS(290), + [sym__newline] = ACTIONS(242), + [sym__indent] = ACTIONS(244), [sym_string_start] = ACTIONS(55), }, - [57] = { - [sym__simple_statements] = STATE(3028), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [56] = { + [sym__simple_statements] = STATE(1414), + [sym_import_statement] = STATE(2962), + [sym_assert_statement] = STATE(2962), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(2962), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2503), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(2962), + [sym_augmented_assignment] = STATE(2962), + [sym_unification] = STATE(2962), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16349,60 +16397,61 @@ 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(292), - [sym__indent] = ACTIONS(294), + [sym__newline] = ACTIONS(246), + [sym__indent] = ACTIONS(248), [sym_string_start] = ACTIONS(55), }, - [58] = { - [sym__simple_statements] = STATE(3008), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [57] = { + [sym__simple_statements] = STATE(2964), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16424,60 +16473,61 @@ 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(296), - [sym__indent] = ACTIONS(298), + [sym__newline] = ACTIONS(250), + [sym__indent] = ACTIONS(252), [sym_string_start] = ACTIONS(55), }, - [59] = { - [sym__simple_statements] = STATE(2994), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [58] = { + [sym__simple_statements] = STATE(3070), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16499,60 +16549,61 @@ 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(300), - [sym__indent] = ACTIONS(302), + [sym__newline] = ACTIONS(254), + [sym__indent] = ACTIONS(256), [sym_string_start] = ACTIONS(55), }, - [60] = { - [sym__simple_statements] = STATE(3047), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [59] = { + [sym__simple_statements] = STATE(1680), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2530), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16574,60 +16625,61 @@ 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(304), - [sym__indent] = ACTIONS(306), + [sym__newline] = ACTIONS(258), + [sym__indent] = ACTIONS(260), [sym_string_start] = ACTIONS(55), }, - [61] = { - [sym__simple_statements] = STATE(1676), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2392), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [60] = { + [sym__simple_statements] = STATE(1702), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2530), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16649,60 +16701,61 @@ 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(308), - [sym__indent] = ACTIONS(310), + [sym__newline] = ACTIONS(262), + [sym__indent] = ACTIONS(264), [sym_string_start] = ACTIONS(55), }, - [62] = { - [sym__simple_statements] = STATE(3143), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [61] = { + [sym__simple_statements] = STATE(3133), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16724,60 +16777,137 @@ 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(312), - [sym__indent] = ACTIONS(314), + [sym__newline] = ACTIONS(266), + [sym__indent] = ACTIONS(268), [sym_string_start] = ACTIONS(55), }, + [62] = { + [sym_schema_expr] = STATE(928), + [sym_schema_instantiation] = STATE(928), + [sym_lambda_expr] = STATE(928), + [sym_quant_expr] = STATE(928), + [sym_quant_op] = STATE(2974), + [sym_dotted_name] = STATE(2475), + [sym_expression] = STATE(1160), + [sym_as_expression] = STATE(909), + [sym_selector_expression] = STATE(887), + [sym_primary_expression] = STATE(848), + [sym_paren_expression] = STATE(928), + [sym_braces_expression] = STATE(928), + [sym_not_operator] = STATE(909), + [sym_boolean_operator] = STATE(909), + [sym_long_expression] = STATE(909), + [sym_string_literal_expr] = STATE(928), + [sym_config_expr] = STATE(928), + [sym_binary_operator] = STATE(916), + [sym_unary_operator] = STATE(928), + [sym_sequence_operation] = STATE(909), + [sym_in_operation] = STATE(917), + [sym_not_in_operation] = STATE(917), + [sym_comparison_operator] = STATE(909), + [sym_select_suffix] = STATE(928), + [sym_attribute] = STATE(928), + [sym_optional_attribute] = STATE(928), + [sym_optional_attribute_declaration] = STATE(928), + [sym_optional_item] = STATE(928), + [sym_null_coalesce] = STATE(928), + [sym_subscript] = STATE(916), + [sym_call] = STATE(871), + [sym_list] = STATE(919), + [sym_dictionary] = STATE(919), + [sym_list_comprehension] = STATE(919), + [sym_dictionary_comprehension] = STATE(919), + [sym_conditional_expression] = STATE(909), + [sym_string] = STATE(928), + [aux_sym_check_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(200), + [anon_sym_import] = ACTIONS(200), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_assert] = ACTIONS(200), + [anon_sym_if] = ACTIONS(200), + [anon_sym_LPAREN] = ACTIONS(198), + [anon_sym_LBRACK] = ACTIONS(198), + [anon_sym_lambda] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(198), + [anon_sym_all] = ACTIONS(200), + [anon_sym_any] = ACTIONS(200), + [anon_sym_filter] = ACTIONS(200), + [anon_sym_map] = ACTIONS(200), + [anon_sym_type] = ACTIONS(200), + [anon_sym_schema] = ACTIONS(200), + [anon_sym_mixin] = ACTIONS(200), + [anon_sym_protocol] = ACTIONS(200), + [anon_sym_rule] = ACTIONS(200), + [anon_sym_check] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_QMARK_DOT] = ACTIONS(198), + [anon_sym_not] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(198), + [anon_sym_TILDE] = ACTIONS(198), + [sym_integer] = ACTIONS(200), + [sym_float] = ACTIONS(198), + [sym_true] = ACTIONS(200), + [sym_false] = ACTIONS(200), + [sym_none] = ACTIONS(200), + [sym_undefined] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(198), + [sym_string_start] = ACTIONS(198), + }, [63] = { - [sym__simple_statements] = STATE(1733), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2491), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [sym__simple_statements] = STATE(3139), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16799,60 +16929,137 @@ 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(316), - [sym__indent] = ACTIONS(318), + [sym__newline] = ACTIONS(270), + [sym__indent] = ACTIONS(272), [sym_string_start] = ACTIONS(55), }, [64] = { - [sym__simple_statements] = STATE(1804), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2491), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [sym_schema_expr] = STATE(928), + [sym_schema_instantiation] = STATE(928), + [sym_lambda_expr] = STATE(928), + [sym_quant_expr] = STATE(928), + [sym_quant_op] = STATE(2974), + [sym_dotted_name] = STATE(2475), + [sym_expression] = STATE(1160), + [sym_as_expression] = STATE(909), + [sym_selector_expression] = STATE(887), + [sym_primary_expression] = STATE(848), + [sym_paren_expression] = STATE(928), + [sym_braces_expression] = STATE(928), + [sym_not_operator] = STATE(909), + [sym_boolean_operator] = STATE(909), + [sym_long_expression] = STATE(909), + [sym_string_literal_expr] = STATE(928), + [sym_config_expr] = STATE(928), + [sym_binary_operator] = STATE(916), + [sym_unary_operator] = STATE(928), + [sym_sequence_operation] = STATE(909), + [sym_in_operation] = STATE(917), + [sym_not_in_operation] = STATE(917), + [sym_comparison_operator] = STATE(909), + [sym_select_suffix] = STATE(928), + [sym_attribute] = STATE(928), + [sym_optional_attribute] = STATE(928), + [sym_optional_attribute_declaration] = STATE(928), + [sym_optional_item] = STATE(928), + [sym_null_coalesce] = STATE(928), + [sym_subscript] = STATE(916), + [sym_call] = STATE(871), + [sym_list] = STATE(919), + [sym_dictionary] = STATE(919), + [sym_list_comprehension] = STATE(919), + [sym_dictionary_comprehension] = STATE(919), + [sym_conditional_expression] = STATE(909), + [sym_string] = STATE(928), + [aux_sym_check_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(274), + [anon_sym_import] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(282), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_lambda] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_all] = ACTIONS(294), + [anon_sym_any] = ACTIONS(294), + [anon_sym_filter] = ACTIONS(294), + [anon_sym_map] = ACTIONS(294), + [anon_sym_type] = ACTIONS(277), + [anon_sym_schema] = ACTIONS(277), + [anon_sym_mixin] = ACTIONS(277), + [anon_sym_protocol] = ACTIONS(277), + [anon_sym_rule] = ACTIONS(277), + [anon_sym_check] = ACTIONS(277), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_QMARK_DOT] = ACTIONS(299), + [anon_sym_not] = ACTIONS(302), + [anon_sym_PLUS] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(308), + [anon_sym_DASH] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [sym_integer] = ACTIONS(311), + [sym_float] = ACTIONS(314), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_none] = ACTIONS(311), + [sym_undefined] = ACTIONS(311), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(297), + [sym_string_start] = ACTIONS(317), + }, + [65] = { + [sym__simple_statements] = STATE(2989), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16878,56 +17085,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(322), [sym_string_start] = ACTIONS(55), }, - [65] = { - [sym__simple_statements] = STATE(1775), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2491), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [66] = { + [sym__simple_statements] = STATE(1213), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2530), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -16953,56 +17161,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(326), [sym_string_start] = ACTIONS(55), }, - [66] = { - [sym__simple_statements] = STATE(1425), - [sym_import_statement] = STATE(3140), - [sym_assert_statement] = STATE(3140), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3140), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2491), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3140), - [sym_augmented_assignment] = STATE(3140), - [sym_unification] = STATE(3140), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [67] = { + [sym__simple_statements] = STATE(1439), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2530), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -17028,131 +17237,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(330), [sym_string_start] = ACTIONS(55), }, - [67] = { - [sym_schema_expr] = STATE(904), - [sym_lambda_expr] = STATE(904), - [sym_quant_expr] = STATE(904), - [sym_quant_op] = STATE(3059), - [sym_dotted_name] = STATE(2467), - [sym_expression] = STATE(1149), - [sym_as_expression] = STATE(905), - [sym_selector_expression] = STATE(554), - [sym_primary_expression] = STATE(347), - [sym_paren_expression] = STATE(904), - [sym_braces_expression] = STATE(904), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_long_expression] = STATE(905), - [sym_string_literal_expr] = STATE(904), - [sym_config_expr] = STATE(904), - [sym_binary_operator] = STATE(906), - [sym_unary_operator] = STATE(904), - [sym_sequence_operation] = STATE(905), - [sym_in_operation] = STATE(907), - [sym_not_in_operation] = STATE(907), - [sym_comparison_operator] = STATE(905), - [sym_select_suffix] = STATE(904), - [sym_attribute] = STATE(904), - [sym_optional_attribute] = STATE(904), - [sym_optional_attribute_declaration] = STATE(904), - [sym_optional_item] = STATE(904), - [sym_null_coalesce] = STATE(904), - [sym_subscript] = STATE(906), - [sym_call] = STATE(906), - [sym_list] = STATE(908), - [sym_dictionary] = STATE(908), - [sym_list_comprehension] = STATE(908), - [sym_dictionary_comprehension] = STATE(908), - [sym_conditional_expression] = STATE(905), - [sym_string] = STATE(904), - [aux_sym_check_statement_repeat1] = STATE(73), - [ts_builtin_sym_end] = ACTIONS(182), - [sym_identifier] = ACTIONS(180), - [anon_sym_import] = ACTIONS(180), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_assert] = ACTIONS(180), - [anon_sym_if] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(182), - [anon_sym_LBRACK] = ACTIONS(182), - [anon_sym_lambda] = ACTIONS(180), - [anon_sym_LBRACE] = ACTIONS(182), - [anon_sym_all] = ACTIONS(180), - [anon_sym_any] = ACTIONS(180), - [anon_sym_filter] = ACTIONS(180), - [anon_sym_map] = ACTIONS(180), - [anon_sym_type] = ACTIONS(180), - [anon_sym_schema] = ACTIONS(180), - [anon_sym_mixin] = ACTIONS(180), - [anon_sym_protocol] = ACTIONS(180), - [anon_sym_rule] = ACTIONS(180), - [anon_sym_check] = ACTIONS(180), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_QMARK_DOT] = ACTIONS(182), - [anon_sym_not] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_TILDE] = ACTIONS(182), - [sym_integer] = ACTIONS(180), - [sym_float] = ACTIONS(182), - [sym_true] = ACTIONS(180), - [sym_false] = ACTIONS(180), - [sym_none] = ACTIONS(180), - [sym_undefined] = ACTIONS(180), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(182), - }, [68] = { - [sym__simple_statements] = STATE(1706), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2392), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [sym__simple_statements] = STATE(1754), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2530), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -17179,55 +17314,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [69] = { - [sym__simple_statements] = STATE(1803), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2392), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [sym_schema_expr] = STATE(979), + [sym_schema_instantiation] = STATE(979), + [sym_lambda_expr] = STATE(979), + [sym_quant_expr] = STATE(979), + [sym_quant_op] = STATE(3059), + [sym_dotted_name] = STATE(2496), + [sym_expression] = STATE(1164), + [sym_as_expression] = STATE(977), + [sym_selector_expression] = STATE(876), + [sym_primary_expression] = STATE(549), + [sym_paren_expression] = STATE(979), + [sym_braces_expression] = STATE(979), + [sym_not_operator] = STATE(977), + [sym_boolean_operator] = STATE(977), + [sym_long_expression] = STATE(977), + [sym_string_literal_expr] = STATE(979), + [sym_config_expr] = STATE(979), + [sym_binary_operator] = STATE(905), + [sym_unary_operator] = STATE(979), + [sym_sequence_operation] = STATE(977), + [sym_in_operation] = STATE(906), + [sym_not_in_operation] = STATE(906), + [sym_comparison_operator] = STATE(977), + [sym_select_suffix] = STATE(979), + [sym_attribute] = STATE(979), + [sym_optional_attribute] = STATE(979), + [sym_optional_attribute_declaration] = STATE(979), + [sym_optional_item] = STATE(979), + [sym_null_coalesce] = STATE(979), + [sym_subscript] = STATE(905), + [sym_call] = STATE(881), + [sym_list] = STATE(911), + [sym_dictionary] = STATE(911), + [sym_list_comprehension] = STATE(911), + [sym_dictionary_comprehension] = STATE(911), + [sym_conditional_expression] = STATE(977), + [sym_string] = STATE(979), + [aux_sym_check_statement_repeat1] = STATE(69), + [ts_builtin_sym_end] = ACTIONS(297), + [sym_identifier] = ACTIONS(336), + [anon_sym_import] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_assert] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_lambda] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_all] = ACTIONS(294), + [anon_sym_any] = ACTIONS(294), + [anon_sym_filter] = ACTIONS(294), + [anon_sym_map] = ACTIONS(294), + [anon_sym_type] = ACTIONS(277), + [anon_sym_schema] = ACTIONS(277), + [anon_sym_mixin] = ACTIONS(277), + [anon_sym_protocol] = ACTIONS(277), + [anon_sym_rule] = ACTIONS(277), + [anon_sym_check] = ACTIONS(277), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_QMARK_DOT] = ACTIONS(354), + [anon_sym_not] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(360), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(360), + [anon_sym_TILDE] = ACTIONS(360), + [sym_integer] = ACTIONS(366), + [sym_float] = ACTIONS(369), + [sym_true] = ACTIONS(366), + [sym_false] = ACTIONS(366), + [sym_none] = ACTIONS(366), + [sym_undefined] = ACTIONS(366), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(372), + }, + [70] = { + [sym__simple_statements] = STATE(1745), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2530), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -17249,60 +17461,61 @@ 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(336), - [sym__indent] = ACTIONS(338), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), [sym_string_start] = ACTIONS(55), }, - [70] = { - [sym__simple_statements] = STATE(1800), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2392), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [71] = { + [sym__simple_statements] = STATE(3100), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -17324,60 +17537,61 @@ 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(340), - [sym__indent] = ACTIONS(342), + [sym__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), [sym_string_start] = ACTIONS(55), }, - [71] = { - [sym__simple_statements] = STATE(3076), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [72] = { + [sym__simple_statements] = STATE(3068), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -17399,60 +17613,61 @@ 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(344), - [sym__indent] = ACTIONS(346), + [sym__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), [sym_string_start] = ACTIONS(55), }, - [72] = { - [sym__simple_statements] = STATE(1723), - [sym_import_statement] = STATE(3018), - [sym_assert_statement] = STATE(3018), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(3018), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2392), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(3018), - [sym_augmented_assignment] = STATE(3018), - [sym_unification] = STATE(3018), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [73] = { + [sym__simple_statements] = STATE(3241), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -17474,135 +17689,61 @@ 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(348), - [sym__indent] = ACTIONS(350), + [sym__newline] = ACTIONS(387), + [sym__indent] = ACTIONS(389), [sym_string_start] = ACTIONS(55), }, - [73] = { - [sym_schema_expr] = STATE(904), - [sym_lambda_expr] = STATE(904), - [sym_quant_expr] = STATE(904), - [sym_quant_op] = STATE(3059), - [sym_dotted_name] = STATE(2467), - [sym_expression] = STATE(1149), - [sym_as_expression] = STATE(905), - [sym_selector_expression] = STATE(554), - [sym_primary_expression] = STATE(347), - [sym_paren_expression] = STATE(904), - [sym_braces_expression] = STATE(904), - [sym_not_operator] = STATE(905), - [sym_boolean_operator] = STATE(905), - [sym_long_expression] = STATE(905), - [sym_string_literal_expr] = STATE(904), - [sym_config_expr] = STATE(904), - [sym_binary_operator] = STATE(906), - [sym_unary_operator] = STATE(904), - [sym_sequence_operation] = STATE(905), - [sym_in_operation] = STATE(907), - [sym_not_in_operation] = STATE(907), - [sym_comparison_operator] = STATE(905), - [sym_select_suffix] = STATE(904), - [sym_attribute] = STATE(904), - [sym_optional_attribute] = STATE(904), - [sym_optional_attribute_declaration] = STATE(904), - [sym_optional_item] = STATE(904), - [sym_null_coalesce] = STATE(904), - [sym_subscript] = STATE(906), - [sym_call] = STATE(906), - [sym_list] = STATE(908), - [sym_dictionary] = STATE(908), - [sym_list_comprehension] = STATE(908), - [sym_dictionary_comprehension] = STATE(908), - [sym_conditional_expression] = STATE(905), - [sym_string] = STATE(904), - [aux_sym_check_statement_repeat1] = STATE(73), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(352), - [anon_sym_import] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(355), - [anon_sym_assert] = ACTIONS(209), - [anon_sym_if] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(358), - [anon_sym_LBRACK] = ACTIONS(361), - [anon_sym_lambda] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_all] = ACTIONS(226), - [anon_sym_any] = ACTIONS(226), - [anon_sym_filter] = ACTIONS(226), - [anon_sym_map] = ACTIONS(226), - [anon_sym_type] = ACTIONS(209), - [anon_sym_schema] = ACTIONS(209), - [anon_sym_mixin] = ACTIONS(209), - [anon_sym_protocol] = ACTIONS(209), - [anon_sym_rule] = ACTIONS(209), - [anon_sym_check] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(370), - [anon_sym_not] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_DQUOTE] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(376), - [sym_integer] = ACTIONS(382), - [sym_float] = ACTIONS(385), - [sym_true] = ACTIONS(382), - [sym_false] = ACTIONS(382), - [sym_none] = ACTIONS(382), - [sym_undefined] = ACTIONS(382), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(388), - }, [74] = { - [sym__simple_statements] = STATE(3201), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [sym__simple_statements] = STATE(1742), + [sym_import_statement] = STATE(3248), + [sym_assert_statement] = STATE(3248), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3248), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2530), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3248), + [sym_augmented_assignment] = STATE(3248), + [sym_unification] = STATE(3248), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -17629,55 +17770,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [75] = { - [sym__simple_statements] = STATE(3194), - [sym_import_statement] = STATE(2993), - [sym_assert_statement] = STATE(2993), - [sym_schema_expr] = STATE(1875), - [sym_lambda_expr] = STATE(1875), - [sym_quant_expr] = STATE(1875), - [sym_quant_op] = STATE(3016), - [sym_type_alias_statement] = STATE(2993), - [sym_dotted_name] = STATE(2180), - [sym_expression] = STATE(2446), - [sym_as_expression] = STATE(1849), - [sym_selector_expression] = STATE(1770), - [sym_primary_expression] = STATE(1569), - [sym_paren_expression] = STATE(1875), - [sym_braces_expression] = STATE(1875), - [sym_not_operator] = STATE(1849), - [sym_boolean_operator] = STATE(1849), - [sym_long_expression] = STATE(1849), - [sym_string_literal_expr] = STATE(1875), - [sym_config_expr] = STATE(1875), - [sym_binary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1875), - [sym_sequence_operation] = STATE(1849), - [sym_in_operation] = STATE(1824), - [sym_not_in_operation] = STATE(1824), - [sym_comparison_operator] = STATE(1849), - [sym_assignment] = STATE(2993), - [sym_augmented_assignment] = STATE(2993), - [sym_unification] = STATE(2993), - [sym_select_suffix] = STATE(1875), - [sym_attribute] = STATE(1875), - [sym_optional_attribute] = STATE(1875), - [sym_optional_attribute_declaration] = STATE(1875), - [sym_optional_item] = STATE(1875), - [sym_null_coalesce] = STATE(1875), - [sym_subscript] = STATE(1820), - [sym_call] = STATE(1820), - [sym_list] = STATE(1924), - [sym_dictionary] = STATE(1924), - [sym_list_comprehension] = STATE(1924), - [sym_dictionary_comprehension] = STATE(1924), - [sym_conditional_expression] = STATE(1849), - [sym_string] = STATE(1875), + [sym__simple_statements] = STATE(3029), + [sym_import_statement] = STATE(3055), + [sym_assert_statement] = STATE(3055), + [sym_schema_expr] = STATE(1924), + [sym_schema_instantiation] = STATE(1924), + [sym_lambda_expr] = STATE(1924), + [sym_quant_expr] = STATE(1924), + [sym_quant_op] = STATE(3247), + [sym_type_alias_statement] = STATE(3055), + [sym_dotted_name] = STATE(2152), + [sym_expression] = STATE(2467), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1704), + [sym_primary_expression] = STATE(1564), + [sym_paren_expression] = STATE(1924), + [sym_braces_expression] = STATE(1924), + [sym_not_operator] = STATE(1916), + [sym_boolean_operator] = STATE(1916), + [sym_long_expression] = STATE(1916), + [sym_string_literal_expr] = STATE(1924), + [sym_config_expr] = STATE(1924), + [sym_binary_operator] = STATE(1871), + [sym_unary_operator] = STATE(1924), + [sym_sequence_operation] = STATE(1916), + [sym_in_operation] = STATE(1902), + [sym_not_in_operation] = STATE(1902), + [sym_comparison_operator] = STATE(1916), + [sym_assignment] = STATE(3055), + [sym_augmented_assignment] = STATE(3055), + [sym_unification] = STATE(3055), + [sym_select_suffix] = STATE(1924), + [sym_attribute] = STATE(1924), + [sym_optional_attribute] = STATE(1924), + [sym_optional_attribute_declaration] = STATE(1924), + [sym_optional_item] = STATE(1924), + [sym_null_coalesce] = STATE(1924), + [sym_subscript] = STATE(1871), + [sym_call] = STATE(1490), + [sym_list] = STATE(1893), + [sym_dictionary] = STATE(1893), + [sym_list_comprehension] = STATE(1893), + [sym_dictionary_comprehension] = STATE(1893), + [sym_conditional_expression] = STATE(1916), + [sym_string] = STATE(1924), [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(184), + [anon_sym_LBRACK] = ACTIONS(180), [anon_sym_lambda] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_all] = ACTIONS(27), @@ -17704,48 +17846,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(55), }, [76] = { - [sym_schema_expr] = STATE(1377), - [sym_lambda_expr] = STATE(1377), - [sym_quant_expr] = STATE(1377), - [sym_quant_op] = STATE(3146), - [sym_dictionary_splat] = STATE(2696), - [sym_dotted_name] = STATE(2279), - [sym_expression] = STATE(2264), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1253), - [sym_primary_expression] = STATE(1210), - [sym_paren_expression] = STATE(1745), - [sym_braces_expression] = STATE(1377), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1377), - [sym_config_expr] = STATE(1377), - [sym_config_entries] = STATE(3224), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1373), - [sym_unary_operator] = STATE(1377), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1372), - [sym_not_in_operation] = STATE(1372), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_optional_attribute] = STATE(1377), - [sym_optional_attribute_declaration] = STATE(1377), - [sym_optional_item] = STATE(1377), - [sym_null_coalesce] = STATE(1377), - [sym_subscript] = STATE(1373), - [sym_call] = STATE(1373), - [sym_list] = STATE(1371), - [sym_dictionary] = STATE(1371), - [sym_pair] = STATE(2574), - [sym_list_comprehension] = STATE(1371), - [sym_dictionary_comprehension] = STATE(1371), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1745), + [sym_schema_expr] = STATE(1395), + [sym_schema_instantiation] = STATE(1395), + [sym_lambda_expr] = STATE(1395), + [sym_quant_expr] = STATE(1395), + [sym_quant_op] = STATE(3170), + [sym_dictionary_splat] = STATE(2695), + [sym_dotted_name] = STATE(2292), + [sym_expression] = STATE(2295), + [sym_as_expression] = STATE(1396), + [sym_selector_expression] = STATE(1287), + [sym_primary_expression] = STATE(1202), + [sym_paren_expression] = STATE(1659), + [sym_braces_expression] = STATE(1395), + [sym_not_operator] = STATE(1396), + [sym_boolean_operator] = STATE(1396), + [sym_long_expression] = STATE(1396), + [sym_string_literal_expr] = STATE(1395), + [sym_config_expr] = STATE(1395), + [sym_config_entries] = STATE(3235), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1395), + [sym_sequence_operation] = STATE(1396), + [sym_in_operation] = STATE(1409), + [sym_not_in_operation] = STATE(1409), + [sym_comparison_operator] = STATE(1396), + [sym_select_suffix] = STATE(1395), + [sym_attribute] = STATE(1395), + [sym_optional_attribute] = STATE(1395), + [sym_optional_attribute_declaration] = STATE(1395), + [sym_optional_item] = STATE(1395), + [sym_null_coalesce] = STATE(1395), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1200), + [sym_list] = STATE(1408), + [sym_dictionary] = STATE(1408), + [sym_pair] = STATE(2632), + [sym_list_comprehension] = STATE(1408), + [sym_dictionary_comprehension] = STATE(1408), + [sym_conditional_expression] = STATE(1396), + [sym_string] = STATE(1659), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), @@ -17778,57 +17921,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(431), }, [77] = { - [sym_schema_expr] = STATE(1377), - [sym_lambda_expr] = STATE(1377), - [sym_quant_expr] = STATE(1377), - [sym_quant_op] = STATE(3146), - [sym_dictionary_splat] = STATE(2678), - [sym_dotted_name] = STATE(2279), - [sym_expression] = STATE(2280), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1253), - [sym_primary_expression] = STATE(1210), - [sym_paren_expression] = STATE(1745), - [sym_braces_expression] = STATE(1377), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1377), - [sym_config_expr] = STATE(1377), - [sym_config_entries] = STATE(3131), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1373), - [sym_unary_operator] = STATE(1377), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1372), - [sym_not_in_operation] = STATE(1372), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_optional_attribute] = STATE(1377), - [sym_optional_attribute_declaration] = STATE(1377), - [sym_optional_item] = STATE(1377), - [sym_null_coalesce] = STATE(1377), - [sym_subscript] = STATE(1373), - [sym_call] = STATE(1373), - [sym_list] = STATE(1371), - [sym_dictionary] = STATE(1371), - [sym_pair] = STATE(2582), - [sym_list_comprehension] = STATE(1371), - [sym_dictionary_comprehension] = STATE(1371), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1745), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2725), + [sym_dotted_name] = STATE(2288), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1920), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_config_entries] = STATE(3051), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2615), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1920), + [sym_identifier] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_if] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(441), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(447), + [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(435), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(451), + [sym_integer] = ACTIONS(457), + [sym_float] = ACTIONS(457), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(5), + [sym_line_continuation] = ACTIONS(5), + [sym_string_start] = ACTIONS(461), + }, + [78] = { + [sym_schema_expr] = STATE(1395), + [sym_schema_instantiation] = STATE(1395), + [sym_lambda_expr] = STATE(1395), + [sym_quant_expr] = STATE(1395), + [sym_quant_op] = STATE(3170), + [sym_dictionary_splat] = STATE(2693), + [sym_dotted_name] = STATE(2292), + [sym_expression] = STATE(2302), + [sym_as_expression] = STATE(1396), + [sym_selector_expression] = STATE(1287), + [sym_primary_expression] = STATE(1202), + [sym_paren_expression] = STATE(1659), + [sym_braces_expression] = STATE(1395), + [sym_not_operator] = STATE(1396), + [sym_boolean_operator] = STATE(1396), + [sym_long_expression] = STATE(1396), + [sym_string_literal_expr] = STATE(1395), + [sym_config_expr] = STATE(1395), + [sym_config_entries] = STATE(3111), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1395), + [sym_sequence_operation] = STATE(1396), + [sym_in_operation] = STATE(1409), + [sym_not_in_operation] = STATE(1409), + [sym_comparison_operator] = STATE(1396), + [sym_select_suffix] = STATE(1395), + [sym_attribute] = STATE(1395), + [sym_optional_attribute] = STATE(1395), + [sym_optional_attribute_declaration] = STATE(1395), + [sym_optional_item] = STATE(1395), + [sym_null_coalesce] = STATE(1395), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1200), + [sym_list] = STATE(1408), + [sym_dictionary] = STATE(1408), + [sym_pair] = STATE(2609), + [sym_list_comprehension] = STATE(1408), + [sym_dictionary_comprehension] = STATE(1408), + [sym_conditional_expression] = STATE(1396), + [sym_string] = STATE(1659), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(407), [anon_sym_LBRACK] = ACTIONS(409), [anon_sym_lambda] = ACTIONS(411), [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(465), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), @@ -17838,7 +18057,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(437), + [anon_sym_LF] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(421), [anon_sym_TILDE] = ACTIONS(421), [sym_integer] = ACTIONS(427), @@ -17851,58 +18070,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(5), [sym_string_start] = ACTIONS(431), }, - [78] = { - [sym_schema_expr] = STATE(1377), - [sym_lambda_expr] = STATE(1377), - [sym_quant_expr] = STATE(1377), - [sym_quant_op] = STATE(3146), - [sym_dictionary_splat] = STATE(2681), - [sym_dotted_name] = STATE(2279), - [sym_expression] = STATE(2271), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1253), - [sym_primary_expression] = STATE(1210), - [sym_paren_expression] = STATE(1745), - [sym_braces_expression] = STATE(1377), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1377), - [sym_config_expr] = STATE(1377), - [sym_config_entries] = STATE(3096), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1373), - [sym_unary_operator] = STATE(1377), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1372), - [sym_not_in_operation] = STATE(1372), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_optional_attribute] = STATE(1377), - [sym_optional_attribute_declaration] = STATE(1377), - [sym_optional_item] = STATE(1377), - [sym_null_coalesce] = STATE(1377), - [sym_subscript] = STATE(1373), - [sym_call] = STATE(1373), - [sym_list] = STATE(1371), - [sym_dictionary] = STATE(1371), - [sym_pair] = STATE(2572), - [sym_list_comprehension] = STATE(1371), - [sym_dictionary_comprehension] = STATE(1371), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1745), + [79] = { + [sym_schema_expr] = STATE(1395), + [sym_schema_instantiation] = STATE(1395), + [sym_lambda_expr] = STATE(1395), + [sym_quant_expr] = STATE(1395), + [sym_quant_op] = STATE(3170), + [sym_dictionary_splat] = STATE(2701), + [sym_dotted_name] = STATE(2292), + [sym_expression] = STATE(2286), + [sym_as_expression] = STATE(1396), + [sym_selector_expression] = STATE(1287), + [sym_primary_expression] = STATE(1202), + [sym_paren_expression] = STATE(1659), + [sym_braces_expression] = STATE(1395), + [sym_not_operator] = STATE(1396), + [sym_boolean_operator] = STATE(1396), + [sym_long_expression] = STATE(1396), + [sym_string_literal_expr] = STATE(1395), + [sym_config_expr] = STATE(1395), + [sym_config_entries] = STATE(3005), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1395), + [sym_sequence_operation] = STATE(1396), + [sym_in_operation] = STATE(1409), + [sym_not_in_operation] = STATE(1409), + [sym_comparison_operator] = STATE(1396), + [sym_select_suffix] = STATE(1395), + [sym_attribute] = STATE(1395), + [sym_optional_attribute] = STATE(1395), + [sym_optional_attribute_declaration] = STATE(1395), + [sym_optional_item] = STATE(1395), + [sym_null_coalesce] = STATE(1395), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1200), + [sym_list] = STATE(1408), + [sym_dictionary] = STATE(1408), + [sym_pair] = STATE(2627), + [sym_list_comprehension] = STATE(1408), + [sym_dictionary_comprehension] = STATE(1408), + [sym_conditional_expression] = STATE(1396), + [sym_string] = STATE(1659), [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), @@ -17912,7 +18132,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), @@ -17925,58 +18145,59 @@ 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(1377), - [sym_lambda_expr] = STATE(1377), - [sym_quant_expr] = STATE(1377), - [sym_quant_op] = STATE(3146), - [sym_dictionary_splat] = STATE(2685), - [sym_dotted_name] = STATE(2279), - [sym_expression] = STATE(2277), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1253), - [sym_primary_expression] = STATE(1210), - [sym_paren_expression] = STATE(1745), - [sym_braces_expression] = STATE(1377), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1377), - [sym_config_expr] = STATE(1377), - [sym_config_entries] = STATE(3074), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1373), - [sym_unary_operator] = STATE(1377), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1372), - [sym_not_in_operation] = STATE(1372), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_optional_attribute] = STATE(1377), - [sym_optional_attribute_declaration] = STATE(1377), - [sym_optional_item] = STATE(1377), - [sym_null_coalesce] = STATE(1377), - [sym_subscript] = STATE(1373), - [sym_call] = STATE(1373), - [sym_list] = STATE(1371), - [sym_dictionary] = STATE(1371), - [sym_pair] = STATE(2584), - [sym_list_comprehension] = STATE(1371), - [sym_dictionary_comprehension] = STATE(1371), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1745), + [80] = { + [sym_schema_expr] = STATE(1395), + [sym_schema_instantiation] = STATE(1395), + [sym_lambda_expr] = STATE(1395), + [sym_quant_expr] = STATE(1395), + [sym_quant_op] = STATE(3170), + [sym_dictionary_splat] = STATE(2724), + [sym_dotted_name] = STATE(2292), + [sym_expression] = STATE(2301), + [sym_as_expression] = STATE(1396), + [sym_selector_expression] = STATE(1287), + [sym_primary_expression] = STATE(1202), + [sym_paren_expression] = STATE(1659), + [sym_braces_expression] = STATE(1395), + [sym_not_operator] = STATE(1396), + [sym_boolean_operator] = STATE(1396), + [sym_long_expression] = STATE(1396), + [sym_string_literal_expr] = STATE(1395), + [sym_config_expr] = STATE(1395), + [sym_config_entries] = STATE(3001), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1395), + [sym_sequence_operation] = STATE(1396), + [sym_in_operation] = STATE(1409), + [sym_not_in_operation] = STATE(1409), + [sym_comparison_operator] = STATE(1396), + [sym_select_suffix] = STATE(1395), + [sym_attribute] = STATE(1395), + [sym_optional_attribute] = STATE(1395), + [sym_optional_attribute_declaration] = STATE(1395), + [sym_optional_item] = STATE(1395), + [sym_null_coalesce] = STATE(1395), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1200), + [sym_list] = STATE(1408), + [sym_dictionary] = STATE(1408), + [sym_pair] = STATE(2613), + [sym_list_comprehension] = STATE(1408), + [sym_dictionary_comprehension] = STATE(1408), + [sym_conditional_expression] = STATE(1396), + [sym_string] = STATE(1659), [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), @@ -17986,7 +18207,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), @@ -17999,58 +18220,59 @@ 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(1377), - [sym_lambda_expr] = STATE(1377), - [sym_quant_expr] = STATE(1377), - [sym_quant_op] = STATE(3146), - [sym_dictionary_splat] = STATE(2661), - [sym_dotted_name] = STATE(2279), - [sym_expression] = STATE(2270), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1253), - [sym_primary_expression] = STATE(1210), - [sym_paren_expression] = STATE(1745), - [sym_braces_expression] = STATE(1377), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1377), - [sym_config_expr] = STATE(1377), - [sym_config_entries] = STATE(3064), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1373), - [sym_unary_operator] = STATE(1377), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1372), - [sym_not_in_operation] = STATE(1372), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_optional_attribute] = STATE(1377), - [sym_optional_attribute_declaration] = STATE(1377), - [sym_optional_item] = STATE(1377), - [sym_null_coalesce] = STATE(1377), - [sym_subscript] = STATE(1373), - [sym_call] = STATE(1373), - [sym_list] = STATE(1371), - [sym_dictionary] = STATE(1371), - [sym_pair] = STATE(2614), - [sym_list_comprehension] = STATE(1371), - [sym_dictionary_comprehension] = STATE(1371), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1745), + [81] = { + [sym_schema_expr] = STATE(1395), + [sym_schema_instantiation] = STATE(1395), + [sym_lambda_expr] = STATE(1395), + [sym_quant_expr] = STATE(1395), + [sym_quant_op] = STATE(3170), + [sym_dictionary_splat] = STATE(2714), + [sym_dotted_name] = STATE(2292), + [sym_expression] = STATE(2298), + [sym_as_expression] = STATE(1396), + [sym_selector_expression] = STATE(1287), + [sym_primary_expression] = STATE(1202), + [sym_paren_expression] = STATE(1659), + [sym_braces_expression] = STATE(1395), + [sym_not_operator] = STATE(1396), + [sym_boolean_operator] = STATE(1396), + [sym_long_expression] = STATE(1396), + [sym_string_literal_expr] = STATE(1395), + [sym_config_expr] = STATE(1395), + [sym_config_entries] = STATE(3078), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1395), + [sym_sequence_operation] = STATE(1396), + [sym_in_operation] = STATE(1409), + [sym_not_in_operation] = STATE(1409), + [sym_comparison_operator] = STATE(1396), + [sym_select_suffix] = STATE(1395), + [sym_attribute] = STATE(1395), + [sym_optional_attribute] = STATE(1395), + [sym_optional_attribute_declaration] = STATE(1395), + [sym_optional_item] = STATE(1395), + [sym_null_coalesce] = STATE(1395), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1200), + [sym_list] = STATE(1408), + [sym_dictionary] = STATE(1408), + [sym_pair] = STATE(2624), + [sym_list_comprehension] = STATE(1408), + [sym_dictionary_comprehension] = STATE(1408), + [sym_conditional_expression] = STATE(1396), + [sym_string] = STATE(1659), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(451), + [anon_sym_COMMA] = ACTIONS(481), [anon_sym_LPAREN] = ACTIONS(407), [anon_sym_LBRACK] = ACTIONS(409), [anon_sym_lambda] = ACTIONS(411), [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_RBRACE] = ACTIONS(483), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), @@ -18060,7 +18282,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(455), + [anon_sym_LF] = ACTIONS(485), [anon_sym_DASH] = ACTIONS(421), [anon_sym_TILDE] = ACTIONS(421), [sym_integer] = ACTIONS(427), @@ -18073,58 +18295,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(5), [sym_string_start] = ACTIONS(431), }, - [81] = { - [sym_schema_expr] = STATE(1377), - [sym_lambda_expr] = STATE(1377), - [sym_quant_expr] = STATE(1377), - [sym_quant_op] = STATE(3146), - [sym_dictionary_splat] = STATE(2701), - [sym_dotted_name] = STATE(2279), - [sym_expression] = STATE(2263), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1253), - [sym_primary_expression] = STATE(1210), - [sym_paren_expression] = STATE(1745), - [sym_braces_expression] = STATE(1377), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1377), - [sym_config_expr] = STATE(1377), - [sym_config_entries] = STATE(3227), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1373), - [sym_unary_operator] = STATE(1377), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1372), - [sym_not_in_operation] = STATE(1372), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_optional_attribute] = STATE(1377), - [sym_optional_attribute_declaration] = STATE(1377), - [sym_optional_item] = STATE(1377), - [sym_null_coalesce] = STATE(1377), - [sym_subscript] = STATE(1373), - [sym_call] = STATE(1373), - [sym_list] = STATE(1371), - [sym_dictionary] = STATE(1371), - [sym_pair] = STATE(2576), - [sym_list_comprehension] = STATE(1371), - [sym_dictionary_comprehension] = STATE(1371), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1745), + [82] = { + [sym_schema_expr] = STATE(1395), + [sym_schema_instantiation] = STATE(1395), + [sym_lambda_expr] = STATE(1395), + [sym_quant_expr] = STATE(1395), + [sym_quant_op] = STATE(3170), + [sym_dictionary_splat] = STATE(2698), + [sym_dotted_name] = STATE(2292), + [sym_expression] = STATE(2291), + [sym_as_expression] = STATE(1396), + [sym_selector_expression] = STATE(1287), + [sym_primary_expression] = STATE(1202), + [sym_paren_expression] = STATE(1659), + [sym_braces_expression] = STATE(1395), + [sym_not_operator] = STATE(1396), + [sym_boolean_operator] = STATE(1396), + [sym_long_expression] = STATE(1396), + [sym_string_literal_expr] = STATE(1395), + [sym_config_expr] = STATE(1395), + [sym_config_entries] = STATE(3047), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1395), + [sym_sequence_operation] = STATE(1396), + [sym_in_operation] = STATE(1409), + [sym_not_in_operation] = STATE(1409), + [sym_comparison_operator] = STATE(1396), + [sym_select_suffix] = STATE(1395), + [sym_attribute] = STATE(1395), + [sym_optional_attribute] = STATE(1395), + [sym_optional_attribute_declaration] = STATE(1395), + [sym_optional_item] = STATE(1395), + [sym_null_coalesce] = STATE(1395), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1200), + [sym_list] = STATE(1408), + [sym_dictionary] = STATE(1408), + [sym_pair] = STATE(2636), + [sym_list_comprehension] = STATE(1408), + [sym_dictionary_comprehension] = STATE(1408), + [sym_conditional_expression] = STATE(1396), + [sym_string] = STATE(1659), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(457), + [anon_sym_COMMA] = ACTIONS(487), [anon_sym_LPAREN] = ACTIONS(407), [anon_sym_LBRACK] = ACTIONS(409), [anon_sym_lambda] = ACTIONS(411), [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(489), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), @@ -18134,7 +18357,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(461), + [anon_sym_LF] = ACTIONS(491), [anon_sym_DASH] = ACTIONS(421), [anon_sym_TILDE] = ACTIONS(421), [sym_integer] = ACTIONS(427), @@ -18147,58 +18370,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(5), [sym_string_start] = ACTIONS(431), }, - [82] = { - [sym_schema_expr] = STATE(1377), - [sym_lambda_expr] = STATE(1377), - [sym_quant_expr] = STATE(1377), - [sym_quant_op] = STATE(3146), - [sym_dictionary_splat] = STATE(2659), - [sym_dotted_name] = STATE(2279), - [sym_expression] = STATE(2267), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1253), - [sym_primary_expression] = STATE(1210), - [sym_paren_expression] = STATE(1745), - [sym_braces_expression] = STATE(1377), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1377), - [sym_config_expr] = STATE(1377), - [sym_config_entries] = STATE(3083), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1373), - [sym_unary_operator] = STATE(1377), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1372), - [sym_not_in_operation] = STATE(1372), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_optional_attribute] = STATE(1377), - [sym_optional_attribute_declaration] = STATE(1377), - [sym_optional_item] = STATE(1377), - [sym_null_coalesce] = STATE(1377), - [sym_subscript] = STATE(1373), - [sym_call] = STATE(1373), - [sym_list] = STATE(1371), - [sym_dictionary] = STATE(1371), - [sym_pair] = STATE(2610), - [sym_list_comprehension] = STATE(1371), - [sym_dictionary_comprehension] = STATE(1371), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1745), + [83] = { + [sym_schema_expr] = STATE(1395), + [sym_schema_instantiation] = STATE(1395), + [sym_lambda_expr] = STATE(1395), + [sym_quant_expr] = STATE(1395), + [sym_quant_op] = STATE(3170), + [sym_dictionary_splat] = STATE(2713), + [sym_dotted_name] = STATE(2292), + [sym_expression] = STATE(2282), + [sym_as_expression] = STATE(1396), + [sym_selector_expression] = STATE(1287), + [sym_primary_expression] = STATE(1202), + [sym_paren_expression] = STATE(1659), + [sym_braces_expression] = STATE(1395), + [sym_not_operator] = STATE(1396), + [sym_boolean_operator] = STATE(1396), + [sym_long_expression] = STATE(1396), + [sym_string_literal_expr] = STATE(1395), + [sym_config_expr] = STATE(1395), + [sym_config_entries] = STATE(3158), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1395), + [sym_sequence_operation] = STATE(1396), + [sym_in_operation] = STATE(1409), + [sym_not_in_operation] = STATE(1409), + [sym_comparison_operator] = STATE(1396), + [sym_select_suffix] = STATE(1395), + [sym_attribute] = STATE(1395), + [sym_optional_attribute] = STATE(1395), + [sym_optional_attribute_declaration] = STATE(1395), + [sym_optional_item] = STATE(1395), + [sym_null_coalesce] = STATE(1395), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1200), + [sym_list] = STATE(1408), + [sym_dictionary] = STATE(1408), + [sym_pair] = STATE(2638), + [sym_list_comprehension] = STATE(1408), + [sym_dictionary_comprehension] = STATE(1408), + [sym_conditional_expression] = STATE(1396), + [sym_string] = STATE(1659), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(463), + [anon_sym_COMMA] = ACTIONS(493), [anon_sym_LPAREN] = ACTIONS(407), [anon_sym_LBRACK] = ACTIONS(409), [anon_sym_lambda] = ACTIONS(411), [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(495), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), @@ -18208,7 +18432,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(467), + [anon_sym_LF] = ACTIONS(497), [anon_sym_DASH] = ACTIONS(421), [anon_sym_TILDE] = ACTIONS(421), [sym_integer] = ACTIONS(427), @@ -18221,58 +18445,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(5), [sym_string_start] = ACTIONS(431), }, - [83] = { - [sym_schema_expr] = STATE(1377), - [sym_lambda_expr] = STATE(1377), - [sym_quant_expr] = STATE(1377), - [sym_quant_op] = STATE(3146), - [sym_dictionary_splat] = STATE(2660), - [sym_dotted_name] = STATE(2279), - [sym_expression] = STATE(2260), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1253), - [sym_primary_expression] = STATE(1210), - [sym_paren_expression] = STATE(1745), - [sym_braces_expression] = STATE(1377), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1377), - [sym_config_expr] = STATE(1377), - [sym_config_entries] = STATE(3169), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1373), - [sym_unary_operator] = STATE(1377), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1372), - [sym_not_in_operation] = STATE(1372), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_optional_attribute] = STATE(1377), - [sym_optional_attribute_declaration] = STATE(1377), - [sym_optional_item] = STATE(1377), - [sym_null_coalesce] = STATE(1377), - [sym_subscript] = STATE(1373), - [sym_call] = STATE(1373), - [sym_list] = STATE(1371), - [sym_dictionary] = STATE(1371), - [sym_pair] = STATE(2609), - [sym_list_comprehension] = STATE(1371), - [sym_dictionary_comprehension] = STATE(1371), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1745), + [84] = { + [sym_schema_expr] = STATE(1395), + [sym_schema_instantiation] = STATE(1395), + [sym_lambda_expr] = STATE(1395), + [sym_quant_expr] = STATE(1395), + [sym_quant_op] = STATE(3170), + [sym_dictionary_splat] = STATE(2710), + [sym_dotted_name] = STATE(2292), + [sym_expression] = STATE(2285), + [sym_as_expression] = STATE(1396), + [sym_selector_expression] = STATE(1287), + [sym_primary_expression] = STATE(1202), + [sym_paren_expression] = STATE(1659), + [sym_braces_expression] = STATE(1395), + [sym_not_operator] = STATE(1396), + [sym_boolean_operator] = STATE(1396), + [sym_long_expression] = STATE(1396), + [sym_string_literal_expr] = STATE(1395), + [sym_config_expr] = STATE(1395), + [sym_config_entries] = STATE(2978), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1395), + [sym_sequence_operation] = STATE(1396), + [sym_in_operation] = STATE(1409), + [sym_not_in_operation] = STATE(1409), + [sym_comparison_operator] = STATE(1396), + [sym_select_suffix] = STATE(1395), + [sym_attribute] = STATE(1395), + [sym_optional_attribute] = STATE(1395), + [sym_optional_attribute_declaration] = STATE(1395), + [sym_optional_item] = STATE(1395), + [sym_null_coalesce] = STATE(1395), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1200), + [sym_list] = STATE(1408), + [sym_dictionary] = STATE(1408), + [sym_pair] = STATE(2629), + [sym_list_comprehension] = STATE(1408), + [sym_dictionary_comprehension] = STATE(1408), + [sym_conditional_expression] = STATE(1396), + [sym_string] = STATE(1659), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(469), + [anon_sym_COMMA] = ACTIONS(499), [anon_sym_LPAREN] = ACTIONS(407), [anon_sym_LBRACK] = ACTIONS(409), [anon_sym_lambda] = ACTIONS(411), [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), @@ -18282,7 +18507,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(473), + [anon_sym_LF] = ACTIONS(503), [anon_sym_DASH] = ACTIONS(421), [anon_sym_TILDE] = ACTIONS(421), [sym_integer] = ACTIONS(427), @@ -18295,58 +18520,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(5), [sym_string_start] = ACTIONS(431), }, - [84] = { - [sym_schema_expr] = STATE(1377), - [sym_lambda_expr] = STATE(1377), - [sym_quant_expr] = STATE(1377), - [sym_quant_op] = STATE(3146), - [sym_dictionary_splat] = STATE(2684), - [sym_dotted_name] = STATE(2279), - [sym_expression] = STATE(2266), - [sym_as_expression] = STATE(1376), - [sym_selector_expression] = STATE(1253), - [sym_primary_expression] = STATE(1210), - [sym_paren_expression] = STATE(1745), - [sym_braces_expression] = STATE(1377), - [sym_not_operator] = STATE(1376), - [sym_boolean_operator] = STATE(1376), - [sym_long_expression] = STATE(1376), - [sym_string_literal_expr] = STATE(1377), - [sym_config_expr] = STATE(1377), - [sym_config_entries] = STATE(2945), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1373), - [sym_unary_operator] = STATE(1377), - [sym_sequence_operation] = STATE(1376), - [sym_in_operation] = STATE(1372), - [sym_not_in_operation] = STATE(1372), - [sym_comparison_operator] = STATE(1376), - [sym_select_suffix] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_optional_attribute] = STATE(1377), - [sym_optional_attribute_declaration] = STATE(1377), - [sym_optional_item] = STATE(1377), - [sym_null_coalesce] = STATE(1377), - [sym_subscript] = STATE(1373), - [sym_call] = STATE(1373), - [sym_list] = STATE(1371), - [sym_dictionary] = STATE(1371), - [sym_pair] = STATE(2592), - [sym_list_comprehension] = STATE(1371), - [sym_dictionary_comprehension] = STATE(1371), - [sym_conditional_expression] = STATE(1376), - [sym_string] = STATE(1745), + [85] = { + [sym_schema_expr] = STATE(1395), + [sym_schema_instantiation] = STATE(1395), + [sym_lambda_expr] = STATE(1395), + [sym_quant_expr] = STATE(1395), + [sym_quant_op] = STATE(3170), + [sym_dictionary_splat] = STATE(2725), + [sym_dotted_name] = STATE(2292), + [sym_expression] = STATE(2300), + [sym_as_expression] = STATE(1396), + [sym_selector_expression] = STATE(1287), + [sym_primary_expression] = STATE(1202), + [sym_paren_expression] = STATE(1659), + [sym_braces_expression] = STATE(1395), + [sym_not_operator] = STATE(1396), + [sym_boolean_operator] = STATE(1396), + [sym_long_expression] = STATE(1396), + [sym_string_literal_expr] = STATE(1395), + [sym_config_expr] = STATE(1395), + [sym_config_entries] = STATE(3051), + [sym_config_entry] = STATE(2697), + [sym_test] = STATE(2748), + [sym_if_entry] = STATE(2749), + [sym_binary_operator] = STATE(1404), + [sym_unary_operator] = STATE(1395), + [sym_sequence_operation] = STATE(1396), + [sym_in_operation] = STATE(1409), + [sym_not_in_operation] = STATE(1409), + [sym_comparison_operator] = STATE(1396), + [sym_select_suffix] = STATE(1395), + [sym_attribute] = STATE(1395), + [sym_optional_attribute] = STATE(1395), + [sym_optional_attribute_declaration] = STATE(1395), + [sym_optional_item] = STATE(1395), + [sym_null_coalesce] = STATE(1395), + [sym_subscript] = STATE(1404), + [sym_call] = STATE(1200), + [sym_list] = STATE(1408), + [sym_dictionary] = STATE(1408), + [sym_pair] = STATE(2615), + [sym_list_comprehension] = STATE(1408), + [sym_dictionary_comprehension] = STATE(1408), + [sym_conditional_expression] = STATE(1396), + [sym_string] = STATE(1659), [sym_identifier] = ACTIONS(399), [anon_sym_DOT] = ACTIONS(401), [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(437), [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(447), [anon_sym_all] = ACTIONS(27), [anon_sym_any] = ACTIONS(27), [anon_sym_filter] = ACTIONS(27), @@ -18356,7 +18582,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(455), [anon_sym_DASH] = ACTIONS(421), [anon_sym_TILDE] = ACTIONS(421), [sym_integer] = ACTIONS(427), @@ -18369,120 +18595,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(5), [sym_string_start] = ACTIONS(431), }, - [85] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2685), - [sym_dotted_name] = STATE(2276), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1916), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_config_entries] = STATE(3074), - [sym_config_entry] = STATE(2686), - [sym_test] = STATE(2866), - [sym_if_entry] = STATE(2814), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2584), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1916), - [sym_identifier] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_if] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(447), - [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(483), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(497), - [anon_sym_LF] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [sym_integer] = ACTIONS(499), - [sym_float] = ACTIONS(499), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [sym_comment] = ACTIONS(5), - [sym_line_continuation] = ACTIONS(5), - [sym_string_start] = ACTIONS(503), - }, [86] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2245), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_basic_type] = STATE(3150), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(3019), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2263), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_basic_type] = STATE(3239), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3238), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), [sym_identifier] = ACTIONS(505), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), @@ -18517,45 +18670,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(539), }, [87] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2245), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_basic_type] = STATE(3178), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(3019), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2263), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_basic_type] = STATE(3204), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3238), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), [sym_identifier] = ACTIONS(541), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), @@ -18590,2221 +18744,2396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(539), }, [88] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2860), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2860), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(555), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [89] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2790), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2632), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(569), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [90] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2888), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2888), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(573), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [91] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2739), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2584), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(569), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [92] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2821), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2572), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [93] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2895), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2638), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [94] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2713), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2610), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(585), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [95] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(90), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(91), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(555), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [96] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(589), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [97] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(96), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2790), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2790), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(569), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [98] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(88), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2860), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2627), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(555), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [99] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(101), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(103), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [100] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(93), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(94), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(593), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [101] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2892), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2636), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), [anon_sym_RBRACE] = ACTIONS(597), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [102] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2833), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2609), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [103] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_lambda] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(618), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_all] = ACTIONS(623), - [anon_sym_any] = ACTIONS(623), - [anon_sym_filter] = ACTIONS(623), - [anon_sym_map] = ACTIONS(623), - [anon_sym_STAR_STAR] = ACTIONS(626), - [anon_sym_QMARK_DOT] = ACTIONS(629), - [anon_sym_not] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_TILDE] = ACTIONS(635), - [sym_integer] = ACTIONS(641), - [sym_float] = ACTIONS(644), - [sym_true] = ACTIONS(641), - [sym_false] = ACTIONS(641), - [sym_none] = ACTIONS(641), - [sym_undefined] = ACTIONS(641), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(647), + [sym_string_start] = ACTIONS(461), }, [104] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(105), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [105] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [106] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(114), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2892), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2892), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(597), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [107] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2827), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2574), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2855), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2615), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(658), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [108] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2775), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2576), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2890), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2890), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(660), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [109] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2894), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2609), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [110] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(89), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(117), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [111] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2736), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2582), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(92), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [112] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(109), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(104), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(623), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [113] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2791), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2592), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(96), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(625), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [114] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2028), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2295), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2028), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [aux_sym_dict_expr_repeat1] = STATE(103), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(102), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(627), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [115] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2812), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2614), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2855), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2855), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [116] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2888), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2629), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(573), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [117] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(629), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [118] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_lambda] = ACTIONS(643), + [anon_sym_LBRACE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(649), + [anon_sym_all] = ACTIONS(651), + [anon_sym_any] = ACTIONS(651), + [anon_sym_filter] = ACTIONS(651), + [anon_sym_map] = ACTIONS(651), + [anon_sym_STAR_STAR] = ACTIONS(654), + [anon_sym_QMARK_DOT] = ACTIONS(657), + [anon_sym_not] = ACTIONS(660), + [anon_sym_PLUS] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(666), + [anon_sym_DASH] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(663), + [sym_integer] = ACTIONS(669), + [sym_float] = ACTIONS(672), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_none] = ACTIONS(669), + [sym_undefined] = ACTIONS(669), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(675), + }, + [119] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2054), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2311), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2054), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [aux_sym_dict_expr_repeat1] = STATE(105), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, - [119] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2238), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(3107), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), - [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), + [120] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2893), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2624), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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] = 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), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(539), + [sym_string_start] = ACTIONS(461), }, - [120] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2245), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(3019), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), + [121] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2890), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2613), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [122] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2273), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3018), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(515), + [anon_sym_RBRACK] = ACTIONS(686), [anon_sym_lambda] = ACTIONS(517), [anon_sym_LBRACE] = ACTIONS(519), [anon_sym_all] = ACTIONS(27), @@ -20828,251 +21157,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(539), }, - [121] = { - [sym_dict_expr] = STATE(912), - [aux_sym_dotted_name_repeat1] = STATE(2027), - [aux_sym_comparison_operator_repeat1] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_import] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_as] = ACTIONS(696), - [anon_sym_assert] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_else] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_lambda] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_all] = ACTIONS(696), - [anon_sym_any] = ACTIONS(696), - [anon_sym_filter] = ACTIONS(696), - [anon_sym_map] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_schema] = ACTIONS(696), - [anon_sym_mixin] = ACTIONS(696), - [anon_sym_protocol] = ACTIONS(696), - [anon_sym_rule] = ACTIONS(696), - [anon_sym_check] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_QMARK_DOT] = ACTIONS(694), - [anon_sym_not] = ACTIONS(696), - [anon_sym_and] = ACTIONS(696), - [anon_sym_or] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_is] = ACTIONS(696), - [sym_isMutableFlag] = ACTIONS(698), - [anon_sym_QMARK_COLON] = ACTIONS(700), - [anon_sym_QMARK_LBRACK] = ACTIONS(694), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(694), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_none] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(694), - }, - [122] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(702), + [123] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2259), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3108), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [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_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [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(503), + [sym_string_start] = ACTIONS(539), }, - [123] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(704), + [124] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2268), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3054), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(690), + [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_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [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(692), + [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(503), + [sym_string_start] = ACTIONS(539), }, - [124] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2242), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(2936), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), + [125] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2264), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3008), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_RBRACK] = ACTIONS(694), [anon_sym_lambda] = ACTIONS(517), [anon_sym_LBRACE] = ACTIONS(519), [anon_sym_all] = ACTIONS(27), @@ -21086,7 +21351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(531), [anon_sym_DASH] = ACTIONS(529), [anon_sym_TILDE] = ACTIONS(529), - [sym_integer] = ACTIONS(708), + [sym_integer] = ACTIONS(535), [sym_float] = ACTIONS(537), [sym_true] = ACTIONS(535), [sym_false] = ACTIONS(535), @@ -21096,385 +21361,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(539), }, - [125] = { - [sym_dict_expr] = STATE(894), - [aux_sym_dotted_name_repeat1] = STATE(2027), - [aux_sym_comparison_operator_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(696), - [anon_sym_import] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_as] = ACTIONS(696), - [anon_sym_assert] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_else] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_lambda] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_all] = ACTIONS(696), - [anon_sym_any] = ACTIONS(696), - [anon_sym_filter] = ACTIONS(696), - [anon_sym_map] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_schema] = ACTIONS(696), - [anon_sym_mixin] = ACTIONS(696), - [anon_sym_protocol] = ACTIONS(696), - [anon_sym_rule] = ACTIONS(696), - [anon_sym_check] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_QMARK_DOT] = ACTIONS(694), - [anon_sym_not] = ACTIONS(696), - [anon_sym_and] = ACTIONS(696), - [anon_sym_or] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_is] = ACTIONS(696), - [sym_isMutableFlag] = ACTIONS(710), - [anon_sym_QMARK_COLON] = ACTIONS(712), - [anon_sym_QMARK_LBRACK] = ACTIONS(694), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(694), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_none] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(694), - [sym_string_start] = ACTIONS(694), - }, [126] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [127] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, [128] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(718), + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2265), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(2991), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(700), + [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_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [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(503), + [sym_string_start] = ACTIONS(539), }, [129] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(720), + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2268), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3054), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(690), + [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_STAR] = ACTIONS(573), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_not] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [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(503), + [sym_string_start] = ACTIONS(539), }, [130] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2237), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(3090), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [131] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2270), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(2980), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_RBRACK] = ACTIONS(704), [anon_sym_lambda] = ACTIONS(517), [anon_sym_LBRACE] = ACTIONS(519), [anon_sym_all] = ACTIONS(27), @@ -21498,117 +21769,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(539), }, - [131] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [132] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, - [132] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2244), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(2955), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), + [133] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [134] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [135] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(712), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [136] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2272), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3151), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_RBRACK] = ACTIONS(714), [anon_sym_lambda] = ACTIONS(517), [anon_sym_LBRACE] = ACTIONS(519), [anon_sym_all] = ACTIONS(27), @@ -21632,50 +22109,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(539), }, - [133] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2241), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(3093), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), + [137] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2263), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3238), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_RBRACK] = ACTIONS(515), [anon_sym_lambda] = ACTIONS(517), [anon_sym_LBRACE] = ACTIONS(519), [anon_sym_all] = ACTIONS(27), @@ -21699,50 +22177,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(539), }, - [134] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2242), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(2936), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), + [138] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [139] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [140] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_list_splat] = STATE(2744), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2262), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym__collection_elements] = STATE(3039), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(507), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(706), + [anon_sym_RBRACK] = ACTIONS(720), [anon_sym_lambda] = ACTIONS(517), [anon_sym_LBRACE] = ACTIONS(519), [anon_sym_all] = ACTIONS(27), @@ -21766,459 +22381,669 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(539), }, - [135] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [141] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, - [136] = { - [sym_dict_expr] = STATE(912), - [aux_sym_dotted_name_repeat1] = STATE(2027), - [aux_sym_comparison_operator_repeat1] = STATE(2214), - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_import] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_as] = ACTIONS(696), - [anon_sym_assert] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_else] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_lambda] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_all] = ACTIONS(696), - [anon_sym_any] = ACTIONS(696), - [anon_sym_filter] = ACTIONS(696), - [anon_sym_map] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_schema] = ACTIONS(696), - [anon_sym_mixin] = ACTIONS(696), - [anon_sym_protocol] = ACTIONS(696), - [anon_sym_rule] = ACTIONS(696), - [anon_sym_check] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_QMARK_DOT] = ACTIONS(694), - [anon_sym_not] = ACTIONS(696), - [anon_sym_and] = ACTIONS(696), - [anon_sym_or] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_is] = ACTIONS(696), - [sym_isMutableFlag] = ACTIONS(698), - [anon_sym_QMARK_COLON] = ACTIONS(700), - [anon_sym_QMARK_LBRACK] = ACTIONS(694), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(694), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_none] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), + [142] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(694), + [sym_string_start] = ACTIONS(461), }, - [137] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [143] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [144] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(728), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [145] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [146] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, - [138] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [147] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), [anon_sym_RBRACE] = ACTIONS(734), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, - [139] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [148] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), [anon_sym_RBRACE] = ACTIONS(736), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, - [140] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), - [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), + [149] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(461), }, - [141] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2240), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(3082), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), + [150] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_RBRACK] = ACTIONS(742), [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), @@ -22235,57 +23060,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(539), }, - [142] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2239), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(3214), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), + [151] = { + [sym_dict_expr] = STATE(929), + [aux_sym_dotted_name_repeat1] = STATE(2053), + [aux_sym_comparison_operator_repeat1] = STATE(893), + [ts_builtin_sym_end] = ACTIONS(744), + [sym_identifier] = ACTIONS(746), + [anon_sym_import] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_as] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_else] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_lambda] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_in] = ACTIONS(746), + [anon_sym_all] = ACTIONS(746), + [anon_sym_any] = ACTIONS(746), + [anon_sym_filter] = ACTIONS(746), + [anon_sym_map] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_type] = ACTIONS(746), + [anon_sym_schema] = ACTIONS(746), + [anon_sym_mixin] = ACTIONS(746), + [anon_sym_protocol] = ACTIONS(746), + [anon_sym_rule] = ACTIONS(746), + [anon_sym_check] = ACTIONS(746), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_QMARK_DOT] = ACTIONS(744), + [anon_sym_not] = ACTIONS(746), + [anon_sym_and] = ACTIONS(746), + [anon_sym_or] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_is] = ACTIONS(746), + [sym_isMutableFlag] = ACTIONS(748), + [anon_sym_QMARK_COLON] = ACTIONS(750), + [anon_sym_QMARK_LBRACK] = ACTIONS(744), + [sym_integer] = ACTIONS(746), + [sym_float] = ACTIONS(744), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_none] = ACTIONS(746), + [sym_undefined] = ACTIONS(746), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(744), + }, + [152] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(752), [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), @@ -22302,258 +23194,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(539), }, - [143] = { - [sym_dict_expr] = STATE(894), - [aux_sym_dotted_name_repeat1] = STATE(2027), - [aux_sym_comparison_operator_repeat1] = STATE(2214), - [sym_identifier] = ACTIONS(696), - [anon_sym_import] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_as] = ACTIONS(696), - [anon_sym_assert] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_else] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_lambda] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_all] = ACTIONS(696), - [anon_sym_any] = ACTIONS(696), - [anon_sym_filter] = ACTIONS(696), - [anon_sym_map] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_schema] = ACTIONS(696), - [anon_sym_mixin] = ACTIONS(696), - [anon_sym_protocol] = ACTIONS(696), - [anon_sym_rule] = ACTIONS(696), - [anon_sym_check] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_QMARK_DOT] = ACTIONS(694), - [anon_sym_not] = ACTIONS(696), - [anon_sym_and] = ACTIONS(696), - [anon_sym_or] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_is] = ACTIONS(696), - [sym_isMutableFlag] = ACTIONS(710), - [anon_sym_QMARK_COLON] = ACTIONS(712), - [anon_sym_QMARK_LBRACK] = ACTIONS(694), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(694), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_none] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), + [153] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(754), + [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_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__dedent] = ACTIONS(694), - [sym_string_start] = ACTIONS(694), + [sym_string_start] = ACTIONS(539), }, - [144] = { - [sym_dict_expr] = STATE(894), - [aux_sym_dotted_name_repeat1] = STATE(2027), - [aux_sym_comparison_operator_repeat1] = STATE(867), - [sym_identifier] = ACTIONS(696), - [anon_sym_import] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_as] = ACTIONS(696), - [anon_sym_assert] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_else] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_lambda] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_all] = ACTIONS(696), - [anon_sym_any] = ACTIONS(696), - [anon_sym_filter] = ACTIONS(696), - [anon_sym_map] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_schema] = ACTIONS(696), - [anon_sym_mixin] = ACTIONS(696), - [anon_sym_protocol] = ACTIONS(696), - [anon_sym_rule] = ACTIONS(696), - [anon_sym_check] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_QMARK_DOT] = ACTIONS(694), - [anon_sym_not] = ACTIONS(696), - [anon_sym_and] = ACTIONS(696), - [anon_sym_or] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_is] = ACTIONS(696), - [sym_isMutableFlag] = ACTIONS(710), - [anon_sym_QMARK_COLON] = ACTIONS(712), - [anon_sym_QMARK_LBRACK] = ACTIONS(694), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(694), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_none] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), + [154] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(756), + [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_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__dedent] = ACTIONS(694), - [sym_string_start] = ACTIONS(694), + [sym_string_start] = ACTIONS(539), }, - [145] = { - [sym_dict_expr] = STATE(912), - [aux_sym_dotted_name_repeat1] = STATE(2027), - [aux_sym_comparison_operator_repeat1] = STATE(871), - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_import] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_as] = ACTIONS(696), - [anon_sym_assert] = ACTIONS(696), - [anon_sym_if] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(694), - [anon_sym_else] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_lambda] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_all] = ACTIONS(696), - [anon_sym_any] = ACTIONS(696), - [anon_sym_filter] = ACTIONS(696), - [anon_sym_map] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_STAR_STAR] = ACTIONS(694), - [anon_sym_type] = ACTIONS(696), - [anon_sym_schema] = ACTIONS(696), - [anon_sym_mixin] = ACTIONS(696), - [anon_sym_protocol] = ACTIONS(696), - [anon_sym_rule] = ACTIONS(696), - [anon_sym_check] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_QMARK_DOT] = ACTIONS(694), - [anon_sym_not] = ACTIONS(696), - [anon_sym_and] = ACTIONS(696), - [anon_sym_or] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(694), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(694), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_is] = ACTIONS(696), - [sym_isMutableFlag] = ACTIONS(698), - [anon_sym_QMARK_COLON] = ACTIONS(700), - [anon_sym_QMARK_LBRACK] = ACTIONS(694), - [sym_integer] = ACTIONS(696), - [sym_float] = ACTIONS(694), - [sym_true] = ACTIONS(696), - [sym_false] = ACTIONS(696), - [sym_none] = ACTIONS(696), - [sym_undefined] = ACTIONS(696), + [155] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(758), + [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_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(694), + [sym_string_start] = ACTIONS(539), }, - [146] = { - [sym_schema_expr] = STATE(1799), - [sym_lambda_expr] = STATE(1799), - [sym_quant_expr] = STATE(1799), - [sym_quant_op] = STATE(3161), - [sym_list_splat] = STATE(2774), - [sym_dotted_name] = STATE(2411), - [sym_expression] = STATE(2235), - [sym_as_expression] = STATE(1798), - [sym_selector_expression] = STATE(1592), - [sym_primary_expression] = STATE(1408), - [sym_paren_expression] = STATE(1799), - [sym_braces_expression] = STATE(1799), - [sym_not_operator] = STATE(1798), - [sym_boolean_operator] = STATE(1798), - [sym_long_expression] = STATE(1798), - [sym_string_literal_expr] = STATE(1799), - [sym_config_expr] = STATE(1799), - [sym_binary_operator] = STATE(1794), - [sym_unary_operator] = STATE(1799), - [sym_sequence_operation] = STATE(1798), - [sym_in_operation] = STATE(1793), - [sym_not_in_operation] = STATE(1793), - [sym_comparison_operator] = STATE(1798), - [sym_select_suffix] = STATE(1799), - [sym_attribute] = STATE(1799), - [sym_optional_attribute] = STATE(1799), - [sym_optional_attribute_declaration] = STATE(1799), - [sym_optional_item] = STATE(1799), - [sym_null_coalesce] = STATE(1799), - [sym_subscript] = STATE(1794), - [sym_call] = STATE(1794), - [sym_list] = STATE(1792), - [sym_dictionary] = STATE(1792), - [sym_list_comprehension] = STATE(1792), - [sym_dictionary_comprehension] = STATE(1792), - [sym__collection_elements] = STATE(3157), - [sym_conditional_expression] = STATE(1798), - [sym_string] = STATE(1799), - [sym_identifier] = ACTIONS(690), + [156] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_LBRACK] = ACTIONS(511), - [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_RBRACK] = ACTIONS(760), [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), @@ -22570,1582 +23462,2624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(539), }, - [147] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), + [157] = { + [sym_schema_expr] = STATE(2005), + [sym_schema_instantiation] = STATE(2005), + [sym_lambda_expr] = STATE(2005), + [sym_quant_expr] = STATE(2005), + [sym_quant_op] = STATE(3203), [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(746), + [sym_expression] = STATE(2350), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(1905), + [sym_primary_expression] = STATE(1685), + [sym_paren_expression] = STATE(2005), + [sym_braces_expression] = STATE(2005), + [sym_not_operator] = STATE(2002), + [sym_boolean_operator] = STATE(2002), + [sym_long_expression] = STATE(2002), + [sym_string_literal_expr] = STATE(2005), + [sym_config_expr] = STATE(2005), + [sym_binary_operator] = STATE(1997), + [sym_unary_operator] = STATE(2005), + [sym_sequence_operation] = STATE(2002), + [sym_in_operation] = STATE(2008), + [sym_not_in_operation] = STATE(2008), + [sym_comparison_operator] = STATE(2002), + [sym_select_suffix] = STATE(2005), + [sym_attribute] = STATE(2005), + [sym_optional_attribute] = STATE(2005), + [sym_optional_attribute_declaration] = STATE(2005), + [sym_optional_item] = STATE(2005), + [sym_null_coalesce] = STATE(2005), + [sym_subscript] = STATE(1997), + [sym_call] = STATE(1682), + [sym_keyword_argument] = STATE(2788), + [sym_list] = STATE(1991), + [sym_dictionary] = STATE(1991), + [sym_list_comprehension] = STATE(1991), + [sym_dictionary_comprehension] = STATE(1991), + [sym_conditional_expression] = STATE(2002), + [sym_string] = STATE(2005), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(766), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_lambda] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_not] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(788), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(790), }, - [148] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), + [158] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(792), + [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_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), + }, + [159] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(794), + [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_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), + }, + [160] = { + [sym_dict_expr] = STATE(929), + [aux_sym_dotted_name_repeat1] = STATE(2053), + [aux_sym_comparison_operator_repeat1] = STATE(2239), + [ts_builtin_sym_end] = ACTIONS(744), + [sym_identifier] = ACTIONS(746), + [anon_sym_import] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_as] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_else] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_lambda] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_in] = ACTIONS(746), + [anon_sym_all] = ACTIONS(746), + [anon_sym_any] = ACTIONS(746), + [anon_sym_filter] = ACTIONS(746), + [anon_sym_map] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_type] = ACTIONS(746), + [anon_sym_schema] = ACTIONS(746), + [anon_sym_mixin] = ACTIONS(746), + [anon_sym_protocol] = ACTIONS(746), + [anon_sym_rule] = ACTIONS(746), + [anon_sym_check] = ACTIONS(746), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_QMARK_DOT] = ACTIONS(744), + [anon_sym_not] = ACTIONS(746), + [anon_sym_and] = ACTIONS(746), + [anon_sym_or] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_is] = ACTIONS(746), + [sym_isMutableFlag] = ACTIONS(748), + [anon_sym_QMARK_COLON] = ACTIONS(750), + [anon_sym_QMARK_LBRACK] = ACTIONS(744), + [sym_integer] = ACTIONS(746), + [sym_float] = ACTIONS(744), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_none] = ACTIONS(746), + [sym_undefined] = ACTIONS(746), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(744), + }, + [161] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(796), + [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_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), + }, + [162] = { + [sym_schema_expr] = STATE(2005), + [sym_schema_instantiation] = STATE(2005), + [sym_lambda_expr] = STATE(2005), + [sym_quant_expr] = STATE(2005), + [sym_quant_op] = STATE(3203), [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(748), + [sym_expression] = STATE(2329), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(1905), + [sym_primary_expression] = STATE(1685), + [sym_paren_expression] = STATE(2005), + [sym_braces_expression] = STATE(2005), + [sym_not_operator] = STATE(2002), + [sym_boolean_operator] = STATE(2002), + [sym_long_expression] = STATE(2002), + [sym_string_literal_expr] = STATE(2005), + [sym_config_expr] = STATE(2005), + [sym_binary_operator] = STATE(1997), + [sym_unary_operator] = STATE(2005), + [sym_sequence_operation] = STATE(2002), + [sym_in_operation] = STATE(2008), + [sym_not_in_operation] = STATE(2008), + [sym_comparison_operator] = STATE(2002), + [sym_select_suffix] = STATE(2005), + [sym_attribute] = STATE(2005), + [sym_optional_attribute] = STATE(2005), + [sym_optional_attribute_declaration] = STATE(2005), + [sym_optional_item] = STATE(2005), + [sym_null_coalesce] = STATE(2005), + [sym_subscript] = STATE(1997), + [sym_call] = STATE(1682), + [sym_keyword_argument] = STATE(2811), + [sym_list] = STATE(1991), + [sym_dictionary] = STATE(1991), + [sym_list_comprehension] = STATE(1991), + [sym_dictionary_comprehension] = STATE(1991), + [sym_conditional_expression] = STATE(2002), + [sym_string] = STATE(2005), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_lambda] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_not] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(788), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(790), }, - [149] = { - [sym_schema_expr] = STATE(1279), - [sym_lambda_expr] = STATE(1279), - [sym_quant_expr] = STATE(1279), - [sym_quant_op] = STATE(3210), - [sym_dictionary_splat] = STATE(2881), + [163] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(802), + [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_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), + }, + [164] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(804), + [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_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), + }, + [165] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(806), + [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_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), + }, + [166] = { + [sym_schema_expr] = STATE(2005), + [sym_schema_instantiation] = STATE(2005), + [sym_lambda_expr] = STATE(2005), + [sym_quant_expr] = STATE(2005), + [sym_quant_op] = STATE(3203), [sym_dotted_name] = STATE(2501), - [sym_expression] = STATE(2302), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1456), - [sym_primary_expression] = STATE(1334), - [sym_paren_expression] = STATE(1279), - [sym_braces_expression] = STATE(1279), - [sym_not_operator] = STATE(1281), - [sym_boolean_operator] = STATE(1281), - [sym_long_expression] = STATE(1281), - [sym_string_literal_expr] = STATE(1279), - [sym_config_expr] = STATE(1279), - [sym_binary_operator] = STATE(1283), - [sym_unary_operator] = STATE(1279), - [sym_sequence_operation] = STATE(1281), - [sym_in_operation] = STATE(1248), - [sym_not_in_operation] = STATE(1248), - [sym_comparison_operator] = STATE(1281), - [sym_select_suffix] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_optional_attribute] = STATE(1279), - [sym_optional_attribute_declaration] = STATE(1279), - [sym_optional_item] = STATE(1279), - [sym_null_coalesce] = STATE(1279), - [sym_subscript] = STATE(1283), - [sym_call] = STATE(1283), - [sym_list] = STATE(1537), - [sym_dictionary] = STATE(1537), - [sym_pair] = STATE(2881), - [sym_list_comprehension] = STATE(1537), - [sym_dictionary_comprehension] = STATE(1537), - [sym_conditional_expression] = STATE(1281), - [sym_string] = STATE(1279), - [sym_identifier] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(549), - [anon_sym_lambda] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(750), + [sym_expression] = STATE(2358), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(1905), + [sym_primary_expression] = STATE(1685), + [sym_paren_expression] = STATE(2005), + [sym_braces_expression] = STATE(2005), + [sym_not_operator] = STATE(2002), + [sym_boolean_operator] = STATE(2002), + [sym_long_expression] = STATE(2002), + [sym_string_literal_expr] = STATE(2005), + [sym_config_expr] = STATE(2005), + [sym_binary_operator] = STATE(1997), + [sym_unary_operator] = STATE(2005), + [sym_sequence_operation] = STATE(2002), + [sym_in_operation] = STATE(2008), + [sym_not_in_operation] = STATE(2008), + [sym_comparison_operator] = STATE(2002), + [sym_select_suffix] = STATE(2005), + [sym_attribute] = STATE(2005), + [sym_optional_attribute] = STATE(2005), + [sym_optional_attribute_declaration] = STATE(2005), + [sym_optional_item] = STATE(2005), + [sym_null_coalesce] = STATE(2005), + [sym_subscript] = STATE(1997), + [sym_call] = STATE(1682), + [sym_keyword_argument] = STATE(2843), + [sym_list] = STATE(1991), + [sym_dictionary] = STATE(1991), + [sym_list_comprehension] = STATE(1991), + [sym_dictionary_comprehension] = STATE(1991), + [sym_conditional_expression] = STATE(2002), + [sym_string] = STATE(2005), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_lambda] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), [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(493), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_TILDE] = ACTIONS(559), - [sym_integer] = ACTIONS(501), - [sym_float] = ACTIONS(563), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_none] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_not] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(788), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(503), + [sym_string_start] = ACTIONS(790), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(754), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [121] = 28, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(760), 1, - anon_sym_COMMA, - ACTIONS(762), 1, - anon_sym_LPAREN, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(766), 1, - anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, - anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2301), 1, - sym_expression, - STATE(2472), 1, - sym_dotted_name, - STATE(2725), 1, - sym_keyword_argument, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1979), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [242] = 28, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, - anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, - anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(786), 1, - anon_sym_COMMA, - ACTIONS(788), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2309), 1, - sym_expression, - STATE(2472), 1, - sym_dotted_name, - STATE(2738), 1, - sym_keyword_argument, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1979), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [363] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(790), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [484] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(792), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [605] = 28, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, - anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, - anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(794), 1, - anon_sym_COMMA, - ACTIONS(796), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2288), 1, - sym_expression, - STATE(2472), 1, - sym_dotted_name, - STATE(2844), 1, - sym_keyword_argument, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1979), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [726] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(798), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [847] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(800), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [968] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(802), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [1089] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(804), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [1210] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(806), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [1331] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(808), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [1452] = 28, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, - anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, - anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(810), 1, - anon_sym_COMMA, - ACTIONS(812), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2316), 1, - sym_expression, - STATE(2472), 1, - sym_dotted_name, - STATE(2786), 1, - sym_keyword_argument, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1979), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [1573] = 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(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(814), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [1694] = 28, - ACTIONS(756), 1, + [167] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(812), + [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_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), + }, + [168] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(814), + [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_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), + }, + [169] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(816), + [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_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), + }, + [170] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(818), + [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_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), + }, + [171] = { + [sym_schema_expr] = STATE(2005), + [sym_schema_instantiation] = STATE(2005), + [sym_lambda_expr] = STATE(2005), + [sym_quant_expr] = STATE(2005), + [sym_quant_op] = STATE(3203), + [sym_dotted_name] = STATE(2501), + [sym_expression] = STATE(2310), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(1905), + [sym_primary_expression] = STATE(1685), + [sym_paren_expression] = STATE(2005), + [sym_braces_expression] = STATE(2005), + [sym_not_operator] = STATE(2002), + [sym_boolean_operator] = STATE(2002), + [sym_long_expression] = STATE(2002), + [sym_string_literal_expr] = STATE(2005), + [sym_config_expr] = STATE(2005), + [sym_binary_operator] = STATE(1997), + [sym_unary_operator] = STATE(2005), + [sym_sequence_operation] = STATE(2002), + [sym_in_operation] = STATE(2008), + [sym_not_in_operation] = STATE(2008), + [sym_comparison_operator] = STATE(2002), + [sym_select_suffix] = STATE(2005), + [sym_attribute] = STATE(2005), + [sym_optional_attribute] = STATE(2005), + [sym_optional_attribute_declaration] = STATE(2005), + [sym_optional_item] = STATE(2005), + [sym_null_coalesce] = STATE(2005), + [sym_subscript] = STATE(1997), + [sym_call] = STATE(1682), + [sym_keyword_argument] = STATE(2734), + [sym_list] = STATE(1991), + [sym_dictionary] = STATE(1991), + [sym_list_comprehension] = STATE(1991), + [sym_dictionary_comprehension] = STATE(1991), + [sym_conditional_expression] = STATE(2002), + [sym_string] = STATE(2005), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_lambda] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_not] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(788), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(790), + }, + [172] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(824), + [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_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), + }, + [173] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(826), + [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_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), + }, + [174] = { + [sym_schema_expr] = STATE(2005), + [sym_schema_instantiation] = STATE(2005), + [sym_lambda_expr] = STATE(2005), + [sym_quant_expr] = STATE(2005), + [sym_quant_op] = STATE(3203), + [sym_dotted_name] = STATE(2501), + [sym_expression] = STATE(2356), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(1905), + [sym_primary_expression] = STATE(1685), + [sym_paren_expression] = STATE(2005), + [sym_braces_expression] = STATE(2005), + [sym_not_operator] = STATE(2002), + [sym_boolean_operator] = STATE(2002), + [sym_long_expression] = STATE(2002), + [sym_string_literal_expr] = STATE(2005), + [sym_config_expr] = STATE(2005), + [sym_binary_operator] = STATE(1997), + [sym_unary_operator] = STATE(2005), + [sym_sequence_operation] = STATE(2002), + [sym_in_operation] = STATE(2008), + [sym_not_in_operation] = STATE(2008), + [sym_comparison_operator] = STATE(2002), + [sym_select_suffix] = STATE(2005), + [sym_attribute] = STATE(2005), + [sym_optional_attribute] = STATE(2005), + [sym_optional_attribute_declaration] = STATE(2005), + [sym_optional_item] = STATE(2005), + [sym_null_coalesce] = STATE(2005), + [sym_subscript] = STATE(1997), + [sym_call] = STATE(1682), + [sym_keyword_argument] = STATE(2815), + [sym_list] = STATE(1991), + [sym_dictionary] = STATE(1991), + [sym_list_comprehension] = STATE(1991), + [sym_dictionary_comprehension] = STATE(1991), + [sym_conditional_expression] = STATE(2002), + [sym_string] = STATE(2005), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_lambda] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_not] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(788), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(790), + }, + [175] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(832), + [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_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), + }, + [176] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2314), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(834), + [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_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), + }, + [177] = { + [sym_schema_expr] = STATE(2005), + [sym_schema_instantiation] = STATE(2005), + [sym_lambda_expr] = STATE(2005), + [sym_quant_expr] = STATE(2005), + [sym_quant_op] = STATE(3203), + [sym_dotted_name] = STATE(2501), + [sym_expression] = STATE(2330), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(1905), + [sym_primary_expression] = STATE(1685), + [sym_paren_expression] = STATE(2005), + [sym_braces_expression] = STATE(2005), + [sym_not_operator] = STATE(2002), + [sym_boolean_operator] = STATE(2002), + [sym_long_expression] = STATE(2002), + [sym_string_literal_expr] = STATE(2005), + [sym_config_expr] = STATE(2005), + [sym_binary_operator] = STATE(1997), + [sym_unary_operator] = STATE(2005), + [sym_sequence_operation] = STATE(2002), + [sym_in_operation] = STATE(2008), + [sym_not_in_operation] = STATE(2008), + [sym_comparison_operator] = STATE(2002), + [sym_select_suffix] = STATE(2005), + [sym_attribute] = STATE(2005), + [sym_optional_attribute] = STATE(2005), + [sym_optional_attribute_declaration] = STATE(2005), + [sym_optional_item] = STATE(2005), + [sym_null_coalesce] = STATE(2005), + [sym_subscript] = STATE(1997), + [sym_call] = STATE(1682), + [sym_keyword_argument] = STATE(2767), + [sym_list] = STATE(1991), + [sym_dictionary] = STATE(1991), + [sym_list_comprehension] = STATE(1991), + [sym_dictionary_comprehension] = STATE(1991), + [sym_conditional_expression] = STATE(2002), + [sym_string] = STATE(2005), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_lambda] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_not] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(788), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(790), + }, + [178] = { + [sym_schema_expr] = STATE(1268), + [sym_schema_instantiation] = STATE(1268), + [sym_lambda_expr] = STATE(1268), + [sym_quant_expr] = STATE(1268), + [sym_quant_op] = STATE(3223), + [sym_dictionary_splat] = STATE(2922), + [sym_dotted_name] = STATE(2456), + [sym_expression] = STATE(2343), + [sym_as_expression] = STATE(1323), + [sym_selector_expression] = STATE(1437), + [sym_primary_expression] = STATE(1376), + [sym_paren_expression] = STATE(1268), + [sym_braces_expression] = STATE(1268), + [sym_not_operator] = STATE(1323), + [sym_boolean_operator] = STATE(1323), + [sym_long_expression] = STATE(1323), + [sym_string_literal_expr] = STATE(1268), + [sym_config_expr] = STATE(1268), + [sym_binary_operator] = STATE(1322), + [sym_unary_operator] = STATE(1268), + [sym_sequence_operation] = STATE(1323), + [sym_in_operation] = STATE(1321), + [sym_not_in_operation] = STATE(1321), + [sym_comparison_operator] = STATE(1323), + [sym_select_suffix] = STATE(1268), + [sym_attribute] = STATE(1268), + [sym_optional_attribute] = STATE(1268), + [sym_optional_attribute_declaration] = STATE(1268), + [sym_optional_item] = STATE(1268), + [sym_null_coalesce] = STATE(1268), + [sym_subscript] = STATE(1322), + [sym_call] = STATE(1387), + [sym_list] = STATE(1589), + [sym_dictionary] = STATE(1589), + [sym_pair] = STATE(2922), + [sym_list_comprehension] = STATE(1589), + [sym_dictionary_comprehension] = STATE(1589), + [sym_conditional_expression] = STATE(1323), + [sym_string] = STATE(1268), + [sym_identifier] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_lambda] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(553), + [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(557), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_not] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [sym_integer] = ACTIONS(459), + [sym_float] = ACTIONS(565), + [sym_true] = ACTIONS(459), + [sym_false] = ACTIONS(459), + [sym_none] = ACTIONS(459), + [sym_undefined] = ACTIONS(459), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(461), + }, + [179] = { + [sym_schema_expr] = STATE(2005), + [sym_schema_instantiation] = STATE(2005), + [sym_lambda_expr] = STATE(2005), + [sym_quant_expr] = STATE(2005), + [sym_quant_op] = STATE(3203), + [sym_dotted_name] = STATE(2501), + [sym_expression] = STATE(2341), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(1905), + [sym_primary_expression] = STATE(1685), + [sym_paren_expression] = STATE(2005), + [sym_braces_expression] = STATE(2005), + [sym_not_operator] = STATE(2002), + [sym_boolean_operator] = STATE(2002), + [sym_long_expression] = STATE(2002), + [sym_string_literal_expr] = STATE(2005), + [sym_config_expr] = STATE(2005), + [sym_binary_operator] = STATE(1997), + [sym_unary_operator] = STATE(2005), + [sym_sequence_operation] = STATE(2002), + [sym_in_operation] = STATE(2008), + [sym_not_in_operation] = STATE(2008), + [sym_comparison_operator] = STATE(2002), + [sym_select_suffix] = STATE(2005), + [sym_attribute] = STATE(2005), + [sym_optional_attribute] = STATE(2005), + [sym_optional_attribute_declaration] = STATE(2005), + [sym_optional_item] = STATE(2005), + [sym_null_coalesce] = STATE(2005), + [sym_subscript] = STATE(1997), + [sym_call] = STATE(1682), + [sym_keyword_argument] = STATE(2861), + [sym_list] = STATE(1991), + [sym_dictionary] = STATE(1991), + [sym_list_comprehension] = STATE(1991), + [sym_dictionary_comprehension] = STATE(1991), + [sym_conditional_expression] = STATE(2002), + [sym_string] = STATE(2005), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_lambda] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_not] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(788), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(790), + }, + [180] = { + [sym_schema_expr] = STATE(2005), + [sym_schema_instantiation] = STATE(2005), + [sym_lambda_expr] = STATE(2005), + [sym_quant_expr] = STATE(2005), + [sym_quant_op] = STATE(3203), + [sym_dotted_name] = STATE(2501), + [sym_expression] = STATE(2333), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(1905), + [sym_primary_expression] = STATE(1685), + [sym_paren_expression] = STATE(2005), + [sym_braces_expression] = STATE(2005), + [sym_not_operator] = STATE(2002), + [sym_boolean_operator] = STATE(2002), + [sym_long_expression] = STATE(2002), + [sym_string_literal_expr] = STATE(2005), + [sym_config_expr] = STATE(2005), + [sym_binary_operator] = STATE(1997), + [sym_unary_operator] = STATE(2005), + [sym_sequence_operation] = STATE(2002), + [sym_in_operation] = STATE(2008), + [sym_not_in_operation] = STATE(2008), + [sym_comparison_operator] = STATE(2002), + [sym_select_suffix] = STATE(2005), + [sym_attribute] = STATE(2005), + [sym_optional_attribute] = STATE(2005), + [sym_optional_attribute_declaration] = STATE(2005), + [sym_optional_item] = STATE(2005), + [sym_null_coalesce] = STATE(2005), + [sym_subscript] = STATE(1997), + [sym_call] = STATE(1682), + [sym_keyword_argument] = STATE(2769), + [sym_list] = STATE(1991), + [sym_dictionary] = STATE(1991), + [sym_list_comprehension] = STATE(1991), + [sym_dictionary_comprehension] = STATE(1991), + [sym_conditional_expression] = STATE(2002), + [sym_string] = STATE(2005), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_lambda] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_not] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(788), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(790), + }, + [181] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(850), + [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_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), + }, + [182] = { + [sym_schema_expr] = STATE(2005), + [sym_schema_instantiation] = STATE(2005), + [sym_lambda_expr] = STATE(2005), + [sym_quant_expr] = STATE(2005), + [sym_quant_op] = STATE(3203), + [sym_dotted_name] = STATE(2501), + [sym_expression] = STATE(2313), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(1905), + [sym_primary_expression] = STATE(1685), + [sym_paren_expression] = STATE(2005), + [sym_braces_expression] = STATE(2005), + [sym_not_operator] = STATE(2002), + [sym_boolean_operator] = STATE(2002), + [sym_long_expression] = STATE(2002), + [sym_string_literal_expr] = STATE(2005), + [sym_config_expr] = STATE(2005), + [sym_binary_operator] = STATE(1997), + [sym_unary_operator] = STATE(2005), + [sym_sequence_operation] = STATE(2002), + [sym_in_operation] = STATE(2008), + [sym_not_in_operation] = STATE(2008), + [sym_comparison_operator] = STATE(2002), + [sym_select_suffix] = STATE(2005), + [sym_attribute] = STATE(2005), + [sym_optional_attribute] = STATE(2005), + [sym_optional_attribute_declaration] = STATE(2005), + [sym_optional_item] = STATE(2005), + [sym_null_coalesce] = STATE(2005), + [sym_subscript] = STATE(1997), + [sym_call] = STATE(1682), + [sym_keyword_argument] = STATE(2875), + [sym_list] = STATE(1991), + [sym_dictionary] = STATE(1991), + [sym_list_comprehension] = STATE(1991), + [sym_dictionary_comprehension] = STATE(1991), + [sym_conditional_expression] = STATE(2002), + [sym_string] = STATE(2005), + [sym_identifier] = ACTIONS(762), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_lambda] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_all] = ACTIONS(27), + [anon_sym_any] = ACTIONS(27), + [anon_sym_filter] = ACTIONS(27), + [anon_sym_map] = ACTIONS(27), + [anon_sym_QMARK_DOT] = ACTIONS(778), + [anon_sym_not] = ACTIONS(780), + [anon_sym_PLUS] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [sym_integer] = ACTIONS(786), + [sym_float] = ACTIONS(788), + [sym_true] = ACTIONS(786), + [sym_false] = ACTIONS(786), + [sym_none] = ACTIONS(786), + [sym_undefined] = ACTIONS(786), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(790), + }, + [183] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(856), + [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_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), + }, + [184] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(858), + [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_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), + }, + [185] = { + [sym_dict_expr] = STATE(925), + [aux_sym_dotted_name_repeat1] = STATE(2053), + [aux_sym_comparison_operator_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(746), + [anon_sym_import] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_as] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_else] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_lambda] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_in] = ACTIONS(746), + [anon_sym_all] = ACTIONS(746), + [anon_sym_any] = ACTIONS(746), + [anon_sym_filter] = ACTIONS(746), + [anon_sym_map] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_type] = ACTIONS(746), + [anon_sym_schema] = ACTIONS(746), + [anon_sym_mixin] = ACTIONS(746), + [anon_sym_protocol] = ACTIONS(746), + [anon_sym_rule] = ACTIONS(746), + [anon_sym_check] = ACTIONS(746), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_QMARK_DOT] = ACTIONS(744), + [anon_sym_not] = ACTIONS(746), + [anon_sym_and] = ACTIONS(746), + [anon_sym_or] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_is] = ACTIONS(746), + [sym_isMutableFlag] = ACTIONS(860), + [anon_sym_QMARK_COLON] = ACTIONS(862), + [anon_sym_QMARK_LBRACK] = ACTIONS(744), + [sym_integer] = ACTIONS(746), + [sym_float] = ACTIONS(744), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_none] = ACTIONS(746), + [sym_undefined] = ACTIONS(746), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(744), + [sym_string_start] = ACTIONS(744), + }, + [186] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(864), + [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_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), + }, + [187] = { + [sym_dict_expr] = STATE(925), + [aux_sym_dotted_name_repeat1] = STATE(2053), + [aux_sym_comparison_operator_repeat1] = STATE(1107), + [sym_identifier] = ACTIONS(746), + [anon_sym_import] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_as] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_else] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_lambda] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_in] = ACTIONS(746), + [anon_sym_all] = ACTIONS(746), + [anon_sym_any] = ACTIONS(746), + [anon_sym_filter] = ACTIONS(746), + [anon_sym_map] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_type] = ACTIONS(746), + [anon_sym_schema] = ACTIONS(746), + [anon_sym_mixin] = ACTIONS(746), + [anon_sym_protocol] = ACTIONS(746), + [anon_sym_rule] = ACTIONS(746), + [anon_sym_check] = ACTIONS(746), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_QMARK_DOT] = ACTIONS(744), + [anon_sym_not] = ACTIONS(746), + [anon_sym_and] = ACTIONS(746), + [anon_sym_or] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_is] = ACTIONS(746), + [sym_isMutableFlag] = ACTIONS(860), + [anon_sym_QMARK_COLON] = ACTIONS(862), + [anon_sym_QMARK_LBRACK] = ACTIONS(744), + [sym_integer] = ACTIONS(746), + [sym_float] = ACTIONS(744), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_none] = ACTIONS(746), + [sym_undefined] = ACTIONS(746), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(744), + [sym_string_start] = ACTIONS(744), + }, + [188] = { + [sym_dict_expr] = STATE(925), + [aux_sym_dotted_name_repeat1] = STATE(2053), + [aux_sym_comparison_operator_repeat1] = STATE(2239), + [sym_identifier] = ACTIONS(746), + [anon_sym_import] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_as] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_else] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_lambda] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_in] = ACTIONS(746), + [anon_sym_all] = ACTIONS(746), + [anon_sym_any] = ACTIONS(746), + [anon_sym_filter] = ACTIONS(746), + [anon_sym_map] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_type] = ACTIONS(746), + [anon_sym_schema] = ACTIONS(746), + [anon_sym_mixin] = ACTIONS(746), + [anon_sym_protocol] = ACTIONS(746), + [anon_sym_rule] = ACTIONS(746), + [anon_sym_check] = ACTIONS(746), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_QMARK_DOT] = ACTIONS(744), + [anon_sym_not] = ACTIONS(746), + [anon_sym_and] = ACTIONS(746), + [anon_sym_or] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_is] = ACTIONS(746), + [sym_isMutableFlag] = ACTIONS(860), + [anon_sym_QMARK_COLON] = ACTIONS(862), + [anon_sym_QMARK_LBRACK] = ACTIONS(744), + [sym_integer] = ACTIONS(746), + [sym_float] = ACTIONS(744), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_none] = ACTIONS(746), + [sym_undefined] = ACTIONS(746), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(744), + [sym_string_start] = ACTIONS(744), + }, + [189] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(866), + [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_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), + }, + [190] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(868), + [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_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), + }, + [191] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(870), + [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_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), + }, + [192] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2354), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_slice] = STATE(2911), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COLON] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(872), + [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_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), + }, + [193] = { + [sym_dict_expr] = STATE(929), + [aux_sym_dotted_name_repeat1] = STATE(2053), + [aux_sym_comparison_operator_repeat1] = STATE(1123), + [ts_builtin_sym_end] = ACTIONS(744), + [sym_identifier] = ACTIONS(746), + [anon_sym_import] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_as] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(746), + [anon_sym_if] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_else] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_lambda] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_in] = ACTIONS(746), + [anon_sym_all] = ACTIONS(746), + [anon_sym_any] = ACTIONS(746), + [anon_sym_filter] = ACTIONS(746), + [anon_sym_map] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_type] = ACTIONS(746), + [anon_sym_schema] = ACTIONS(746), + [anon_sym_mixin] = ACTIONS(746), + [anon_sym_protocol] = ACTIONS(746), + [anon_sym_rule] = ACTIONS(746), + [anon_sym_check] = ACTIONS(746), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_QMARK_DOT] = ACTIONS(744), + [anon_sym_not] = ACTIONS(746), + [anon_sym_and] = ACTIONS(746), + [anon_sym_or] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_is] = ACTIONS(746), + [sym_isMutableFlag] = ACTIONS(748), + [anon_sym_QMARK_COLON] = ACTIONS(750), + [anon_sym_QMARK_LBRACK] = ACTIONS(744), + [sym_integer] = ACTIONS(746), + [sym_float] = ACTIONS(744), + [sym_true] = ACTIONS(746), + [sym_false] = ACTIONS(746), + [sym_none] = ACTIONS(746), + [sym_undefined] = ACTIONS(746), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(744), + }, + [194] = { + [sym_schema_expr] = STATE(1733), + [sym_schema_instantiation] = STATE(1733), + [sym_lambda_expr] = STATE(1733), + [sym_quant_expr] = STATE(1733), + [sym_quant_op] = STATE(3173), + [sym_dotted_name] = STATE(2514), + [sym_expression] = STATE(2355), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1559), + [sym_primary_expression] = STATE(1430), + [sym_paren_expression] = STATE(1733), + [sym_braces_expression] = STATE(1733), + [sym_not_operator] = STATE(1735), + [sym_boolean_operator] = STATE(1735), + [sym_long_expression] = STATE(1735), + [sym_string_literal_expr] = STATE(1733), + [sym_config_expr] = STATE(1733), + [sym_binary_operator] = STATE(1741), + [sym_unary_operator] = STATE(1733), + [sym_sequence_operation] = STATE(1735), + [sym_in_operation] = STATE(1746), + [sym_not_in_operation] = STATE(1746), + [sym_comparison_operator] = STATE(1735), + [sym_select_suffix] = STATE(1733), + [sym_attribute] = STATE(1733), + [sym_optional_attribute] = STATE(1733), + [sym_optional_attribute_declaration] = STATE(1733), + [sym_optional_item] = STATE(1733), + [sym_null_coalesce] = STATE(1733), + [sym_subscript] = STATE(1741), + [sym_call] = STATE(1431), + [sym_list] = STATE(1748), + [sym_dictionary] = STATE(1748), + [sym_list_comprehension] = STATE(1748), + [sym_dictionary_comprehension] = STATE(1748), + [sym_conditional_expression] = STATE(1735), + [sym_string] = STATE(1733), + [sym_identifier] = ACTIONS(684), + [anon_sym_DOT] = ACTIONS(507), + [anon_sym_COMMA] = ACTIONS(874), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(874), + [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_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), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(758), 1, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(816), 1, - anon_sym_COMMA, - ACTIONS(818), 1, + ACTIONS(878), 1, anon_sym_RPAREN, - STATE(1750), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2289), 1, + STATE(2374), 1, sym_expression, - STATE(2472), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2777), 1, + STATE(2913), 1, sym_keyword_argument, - STATE(3189), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24153,8 +26087,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -24169,76 +26104,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1815] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [121] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(890), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(892), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(896), 1, + anon_sym_, + ACTIONS(898), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(820), 1, - anon_sym_RBRACK, - STATE(1408), 1, + STATE(271), 1, + aux_sym_long_expression_repeat1, + STATE(1562), 1, sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, + STATE(1565), 1, + sym_call, + STATE(1613), 1, sym_expression, - STATE(2411), 1, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3123), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(882), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(894), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(900), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24246,8 +26178,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -24262,76 +26195,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [1936] = 28, - ACTIONS(756), 1, + [238] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(758), 1, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(822), 1, - anon_sym_COMMA, - ACTIONS(824), 1, + ACTIONS(904), 1, anon_sym_RPAREN, - STATE(1750), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2285), 1, + STATE(2374), 1, sym_expression, - STATE(2472), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2864), 1, + STATE(2913), 1, sym_keyword_argument, - STATE(3189), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24339,8 +26271,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -24355,76 +26288,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2057] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [359] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(906), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(826), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_, + STATE(209), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, sym_expression, - STATE(2411), 1, + STATE(1214), 1, + sym_selector_expression, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24432,8 +26362,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -24448,7 +26379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2178] = 28, + [476] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -24469,44 +26400,43 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(752), 1, + ACTIONS(740), 1, anon_sym_COLON, - ACTIONS(828), 1, - anon_sym_RBRACK, - STATE(1408), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2312), 1, + STATE(2284), 1, sym_expression, - STATE(2411), 1, + STATE(2514), 1, sym_dotted_name, - STATE(2896), 1, + STATE(2874), 1, sym_slice, - STATE(3161), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -24517,7 +26447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24525,8 +26455,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -24541,76 +26472,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2299] = 28, - ACTIONS(507), 1, + [597] = 28, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(830), 1, - anon_sym_RBRACK, - STATE(1408), 1, + ACTIONS(914), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2312), 1, + STATE(2374), 1, sym_expression, - STATE(2411), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24618,8 +26548,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -24634,76 +26565,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2420] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [718] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(906), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(832), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_, + STATE(209), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, sym_expression, - STATE(2411), 1, + STATE(1214), 1, + sym_selector_expression, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24711,8 +26639,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -24727,7 +26656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2541] = 28, + [835] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -24748,44 +26677,43 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(752), 1, + ACTIONS(740), 1, anon_sym_COLON, - ACTIONS(834), 1, - anon_sym_RBRACK, - STATE(1408), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2312), 1, + STATE(2283), 1, sym_expression, - STATE(2411), 1, + STATE(2514), 1, sym_dotted_name, - STATE(2896), 1, + STATE(2765), 1, sym_slice, - STATE(3161), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -24796,7 +26724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24804,8 +26732,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -24820,76 +26749,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2662] = 28, - ACTIONS(756), 1, + [956] = 26, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(916), 1, sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(918), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(920), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(922), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(924), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(928), 1, + anon_sym_, + ACTIONS(930), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(836), 1, - anon_sym_COMMA, - ACTIONS(838), 1, - anon_sym_RPAREN, - STATE(1750), 1, + STATE(221), 1, + aux_sym_long_expression_repeat1, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2282), 1, + STATE(1546), 1, sym_expression, - STATE(2472), 1, + STATE(1725), 1, + sym_selector_expression, + STATE(2500), 1, sym_dotted_name, - STATE(2717), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3247), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(926), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -24897,8 +26823,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -24913,169 +26840,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [2783] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(517), 1, + [1073] = 26, + ACTIONS(23), 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, + ACTIONS(55), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(916), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(840), 1, - anon_sym_RBRACK, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [2904] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(918), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(920), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(922), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(924), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(928), 1, + anon_sym_, + ACTIONS(930), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(842), 1, - anon_sym_RBRACK, - STATE(1408), 1, + STATE(221), 1, + aux_sym_long_expression_repeat1, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2312), 1, + STATE(1546), 1, sym_expression, - STATE(2411), 1, + STATE(1725), 1, + sym_selector_expression, + STATE(2500), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3247), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(926), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25083,8 +26914,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25099,76 +26931,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3025] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [1190] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(932), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(844), 1, - anon_sym_RBRACK, - STATE(1408), 1, + ACTIONS(934), 1, + anon_sym_not, + ACTIONS(936), 1, + anon_sym_, + STATE(208), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(2043), 1, sym_primary_expression, - STATE(1592), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, + STATE(2470), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25176,8 +27005,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25192,76 +27022,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3146] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [1307] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(932), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(846), 1, - anon_sym_RBRACK, - STATE(1408), 1, + ACTIONS(934), 1, + anon_sym_not, + ACTIONS(936), 1, + anon_sym_, + STATE(208), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(2043), 1, sym_primary_expression, - STATE(1592), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, + STATE(2470), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25269,8 +27096,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25285,76 +27113,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3267] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [1424] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(938), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(848), 1, - anon_sym_RBRACK, - STATE(1408), 1, + ACTIONS(940), 1, + anon_sym_not, + ACTIONS(942), 1, + anon_sym_, + STATE(271), 1, + aux_sym_long_expression_repeat1, + STATE(1168), 1, + sym_expression, + STATE(1350), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, + STATE(2431), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(451), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25362,8 +27187,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25378,76 +27204,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3388] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [1541] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(932), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(850), 1, - anon_sym_RBRACK, - STATE(1408), 1, + ACTIONS(934), 1, + anon_sym_not, + ACTIONS(944), 1, + anon_sym_, + STATE(271), 1, + aux_sym_long_expression_repeat1, + STATE(1168), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(2043), 1, sym_primary_expression, - STATE(1592), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, + STATE(2470), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25455,8 +27278,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25471,75 +27295,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3509] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [1658] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(906), 1, sym_identifier, - ACTIONS(854), 1, - anon_sym_COLON, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2313), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(946), 1, + anon_sym_, + STATE(271), 1, + aux_sym_long_expression_repeat1, + STATE(1168), 1, sym_expression, - STATE(2411), 1, + STATE(1214), 1, + sym_selector_expression, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(852), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25547,8 +27369,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25563,76 +27386,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3628] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [1775] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(918), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(920), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(922), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(930), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(856), 1, - anon_sym_RBRACK, - STATE(1408), 1, + ACTIONS(948), 1, + anon_sym_, + STATE(287), 1, + aux_sym_long_expression_repeat1, + STATE(1490), 1, + sym_call, + STATE(1546), 1, + sym_expression, + STATE(1564), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, + STATE(2441), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3247), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(13), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(926), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(51), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25640,8 +27460,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25656,76 +27477,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3749] = 28, - ACTIONS(507), 1, + [1892] = 28, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(858), 1, - anon_sym_RBRACK, - STATE(1408), 1, + ACTIONS(950), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2312), 1, + STATE(2374), 1, sym_expression, - STATE(2411), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25733,8 +27553,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25749,76 +27570,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3870] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [2013] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(932), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(860), 1, - anon_sym_RBRACK, - STATE(1408), 1, + ACTIONS(934), 1, + anon_sym_not, + ACTIONS(936), 1, + anon_sym_, + STATE(208), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(2043), 1, sym_primary_expression, - STATE(1592), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, + STATE(2470), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25826,8 +27644,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25842,7 +27661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [3991] = 28, + [2130] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -25853,6 +27672,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, @@ -25863,44 +27684,41 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(862), 1, - anon_sym_RBRACK, - STATE(1408), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2312), 1, + STATE(2373), 1, sym_expression, - STATE(2411), 1, + STATE(2514), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(2924), 1, + sym_list_splat, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -25911,7 +27729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -25919,8 +27737,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -25935,75 +27754,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4112] = 27, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + [2251] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(557), 1, - anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - ACTIONS(573), 1, - anon_sym_STAR_STAR, - STATE(1334), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_not, + ACTIONS(952), 1, + anon_sym_, + STATE(207), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1350), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2302), 1, - sym_expression, - STATE(2501), 1, + STATE(2431), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - STATE(2881), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(451), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26011,8 +27828,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26027,76 +27845,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4231] = 28, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [2368] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(864), 1, - anon_sym_COMMA, - ACTIONS(866), 1, - anon_sym_RPAREN, - STATE(1750), 1, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_not, + ACTIONS(952), 1, + anon_sym_, + STATE(207), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1350), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2287), 1, - sym_expression, - STATE(2472), 1, + STATE(2431), 1, sym_dotted_name, - STATE(2813), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(451), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26104,8 +27919,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26120,76 +27936,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4352] = 28, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [2485] = 26, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(956), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(958), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(962), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(966), 1, + anon_sym_, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - ACTIONS(868), 1, - anon_sym_RBRACK, - STATE(1408), 1, + STATE(217), 1, + aux_sym_long_expression_repeat1, + STATE(1658), 1, + sym_expression, + STATE(1666), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1682), 1, + sym_call, + STATE(1923), 1, sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, + STATE(2522), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3203), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(764), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26197,8 +28010,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26213,76 +28027,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4473] = 28, - ACTIONS(756), 1, + [2602] = 26, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(956), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(958), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(962), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(870), 1, - anon_sym_COMMA, - ACTIONS(872), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2299), 1, + ACTIONS(970), 1, + anon_sym_, + STATE(271), 1, + aux_sym_long_expression_repeat1, + STATE(1666), 1, + sym_primary_expression, + STATE(1682), 1, + sym_call, + STATE(1703), 1, sym_expression, - STATE(2472), 1, + STATE(1923), 1, + sym_selector_expression, + STATE(2522), 1, sym_dotted_name, - STATE(2730), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3203), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + ACTIONS(764), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(786), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26290,8 +28101,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26306,75 +28118,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4594] = 27, - ACTIONS(507), 1, + [2719] = 28, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(876), 1, - anon_sym_COLON, - STATE(1408), 1, + ACTIONS(972), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2291), 1, + STATE(2374), 1, sym_expression, - STATE(2411), 1, + STATE(2501), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(874), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1793), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26382,8 +28194,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26398,72 +28211,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4713] = 25, - ACTIONS(407), 1, + [2840] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(878), 1, + ACTIONS(974), 1, sym_identifier, - ACTIONS(880), 1, + ACTIONS(976), 1, anon_sym_not, - ACTIONS(882), 1, + ACTIONS(980), 1, anon_sym_, - STATE(194), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1176), 1, + STATE(1168), 1, sym_expression, - STATE(1201), 1, + STATE(1592), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1649), 1, sym_selector_expression, - STATE(2400), 1, + STATE(1765), 1, + sym_call, + STATE(2492), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(435), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(978), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(459), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26471,8 +28285,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26487,74 +28302,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4827] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [2957] = 26, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(956), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(958), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(962), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(966), 1, + anon_sym_, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - STATE(1408), 1, + STATE(217), 1, + aux_sym_long_expression_repeat1, + STATE(1658), 1, + sym_expression, + STATE(1666), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1682), 1, + sym_call, + STATE(1923), 1, sym_selector_expression, - STATE(2272), 1, - sym_expression, - STATE(2411), 1, + STATE(2522), 1, sym_dotted_name, - STATE(2735), 1, - sym_slice, - STATE(3161), 1, + STATE(3203), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(764), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26562,8 +28376,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26578,72 +28393,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [4945] = 25, - ACTIONS(884), 1, + [3074] = 26, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(916), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(918), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(920), 1, anon_sym_LBRACK, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(894), 1, + ACTIONS(922), 1, anon_sym_LBRACE, - ACTIONS(896), 1, + ACTIONS(924), 1, anon_sym_not, - ACTIONS(900), 1, - anon_sym_, - ACTIONS(902), 1, + ACTIONS(930), 1, anon_sym_DQUOTE, - ACTIONS(906), 1, - sym_string_start, - STATE(290), 1, + ACTIONS(982), 1, + anon_sym_, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1495), 1, - sym_expression, - STATE(1551), 1, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1551), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2500), 1, sym_dotted_name, - STATE(3106), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1830), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(898), 3, + ACTIONS(926), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26651,8 +28467,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26667,72 +28484,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5059] = 25, - ACTIONS(407), 1, - anon_sym_LPAREN, - ACTIONS(409), 1, - anon_sym_LBRACK, - ACTIONS(411), 1, + [3191] = 26, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(413), 1, - anon_sym_LBRACE, - ACTIONS(423), 1, - anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(878), 1, + ACTIONS(954), 1, sym_identifier, - ACTIONS(880), 1, + ACTIONS(956), 1, + anon_sym_LPAREN, + ACTIONS(958), 1, + anon_sym_LBRACK, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(962), 1, anon_sym_not, - ACTIONS(882), 1, + ACTIONS(966), 1, anon_sym_, - STATE(194), 1, + ACTIONS(968), 1, + anon_sym_DQUOTE, + STATE(217), 1, aux_sym_long_expression_repeat1, - STATE(1176), 1, + STATE(1658), 1, sym_expression, - STATE(1201), 1, + STATE(1666), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1682), 1, + sym_call, + STATE(1923), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2522), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(764), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1372), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(786), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26740,8 +28558,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26756,72 +28575,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5173] = 25, - ACTIONS(407), 1, + [3308] = 28, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(423), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(880), 1, - anon_sym_not, - ACTIONS(882), 1, - anon_sym_, - STATE(194), 1, - aux_sym_long_expression_repeat1, - STATE(1176), 1, - sym_expression, - STATE(1201), 1, + ACTIONS(984), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 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(1372), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26829,8 +28651,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26845,72 +28668,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5287] = 25, - ACTIONS(407), 1, + [3429] = 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(878), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(880), 1, - anon_sym_not, - ACTIONS(908), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1178), 1, - sym_expression, - STATE(1201), 1, + ACTIONS(740), 1, + anon_sym_COLON, + STATE(1430), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2354), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2911), 1, + sym_slice, + STATE(3173), 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(1372), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1748), 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(1376), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -26918,8 +28744,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -26934,72 +28761,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5401] = 25, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(916), 1, + [3550] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(919), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(922), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(925), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(931), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(937), 1, - anon_sym_, - ACTIONS(940), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(946), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2516), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, + sym_selector_expression, + STATE(2401), 1, sym_expression, - STATE(3210), 1, + STATE(2514), 1, + sym_dotted_name, + STATE(3173), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(913), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + ACTIONS(986), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(934), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(928), 4, + ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(943), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27007,8 +28836,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27023,72 +28853,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5515] = 25, - ACTIONS(949), 1, + [3669] = 26, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(916), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(918), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(920), 1, anon_sym_LBRACK, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(959), 1, + ACTIONS(922), 1, anon_sym_LBRACE, - ACTIONS(961), 1, + ACTIONS(924), 1, anon_sym_not, - ACTIONS(965), 1, + ACTIONS(928), 1, anon_sym_, - ACTIONS(967), 1, + ACTIONS(930), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, - sym_string_start, - STATE(201), 1, + STATE(221), 1, aux_sym_long_expression_repeat1, - STATE(350), 1, - sym_expression, - STATE(392), 1, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(694), 1, + STATE(1546), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2462), 1, + STATE(2500), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(951), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(899), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(963), 3, + ACTIONS(926), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27096,8 +28927,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27112,72 +28944,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5629] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(975), 1, + [3786] = 26, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(890), 1, anon_sym_LBRACE, - ACTIONS(981), 1, + ACTIONS(898), 1, + anon_sym_DQUOTE, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(988), 1, + sym_identifier, + ACTIONS(990), 1, anon_sym_not, - ACTIONS(985), 1, + ACTIONS(992), 1, anon_sym_, - ACTIONS(987), 1, - anon_sym_DQUOTE, - STATE(202), 1, + STATE(234), 1, aux_sym_long_expression_repeat1, - STATE(1394), 1, - sym_expression, - STATE(1416), 1, + STATE(1500), 1, sym_primary_expression, - STATE(1543), 1, + STATE(1565), 1, + sym_call, + STATE(1572), 1, + sym_expression, + STATE(1771), 1, sym_selector_expression, - STATE(2404), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(882), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1793), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(983), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(894), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1729), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(900), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27185,8 +29018,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27201,72 +29035,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5743] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(953), 1, + [3903] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(957), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(959), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(961), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(965), 1, - anon_sym_, - ACTIONS(967), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - STATE(201), 1, - aux_sym_long_expression_repeat1, - STATE(350), 1, - sym_expression, - STATE(392), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(740), 1, + anon_sym_COLON, + STATE(1430), 1, sym_primary_expression, - STATE(694), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2462), 1, + STATE(2294), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(2965), 1, + STATE(2789), 1, + sym_slice, + STATE(3173), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(951), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(899), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(963), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27274,8 +29111,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27290,74 +29128,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5857] = 27, - ACTIONS(756), 1, + [4024] = 26, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(1002), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1006), 1, + anon_sym_, + ACTIONS(1008), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(989), 1, - anon_sym_RPAREN, - STATE(1750), 1, + STATE(232), 1, + aux_sym_long_expression_repeat1, + STATE(1419), 1, sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2348), 1, + STATE(1431), 1, + sym_call, + STATE(1460), 1, sym_expression, - STATE(2472), 1, + STATE(1615), 1, + sym_selector_expression, + STATE(2508), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3173), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + ACTIONS(507), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1004), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(535), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27365,8 +29202,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27381,72 +29219,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [5975] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(975), 1, + [4141] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(981), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(985), 1, - anon_sym_, - ACTIONS(987), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - STATE(202), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(1010), 1, + anon_sym_, + STATE(247), 1, aux_sym_long_expression_repeat1, - STATE(1394), 1, + STATE(1171), 1, sym_expression, - STATE(1416), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1543), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2404), 1, + STATE(2456), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(435), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1793), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(983), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(451), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1729), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(459), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27454,8 +29293,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27470,72 +29310,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6089] = 25, - ACTIONS(949), 1, + [4258] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(918), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(920), 1, anon_sym_LBRACK, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(959), 1, + ACTIONS(922), 1, anon_sym_LBRACE, - ACTIONS(961), 1, - anon_sym_not, - ACTIONS(967), 1, + ACTIONS(930), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, - sym_string_start, - ACTIONS(991), 1, + ACTIONS(948), 1, anon_sym_, - STATE(195), 1, + STATE(287), 1, aux_sym_long_expression_repeat1, - STATE(311), 1, + STATE(1490), 1, + sym_call, + STATE(1546), 1, sym_expression, - STATE(392), 1, + STATE(1564), 1, sym_primary_expression, - STATE(694), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2462), 1, + STATE(2441), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(951), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(899), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(963), 3, + ACTIONS(926), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27543,8 +29384,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27559,36 +29401,38 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6203] = 25, + [4375] = 26, ACTIONS(517), 1, anon_sym_lambda, ACTIONS(539), 1, sym_string_start, - ACTIONS(973), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(981), 1, + ACTIONS(1002), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1008), 1, anon_sym_DQUOTE, - ACTIONS(993), 1, + ACTIONS(1012), 1, anon_sym_, - STATE(195), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1398), 1, - sym_expression, - STATE(1416), 1, + STATE(1419), 1, sym_primary_expression, - STATE(1543), 1, + STATE(1431), 1, + sym_call, + STATE(1442), 1, + sym_expression, + STATE(1615), 1, sym_selector_expression, - STATE(2404), 1, + STATE(2508), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, @@ -27596,23 +29440,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1793), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(983), 3, + ACTIONS(1004), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1729), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -27624,7 +29467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27632,8 +29475,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27648,72 +29492,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6317] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(975), 1, + [4492] = 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(519), 1, anon_sym_LBRACE, - ACTIONS(981), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(985), 1, - anon_sym_, - ACTIONS(987), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - STATE(202), 1, - aux_sym_long_expression_repeat1, - STATE(1394), 1, - sym_expression, - STATE(1416), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(740), 1, + anon_sym_COLON, + STATE(1430), 1, sym_primary_expression, - STATE(1543), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2404), 1, + STATE(2289), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2766), 1, + sym_slice, + STATE(3173), 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(1793), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(983), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1729), 4, + STATE(1748), 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(1798), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27721,8 +29568,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27737,72 +29585,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6431] = 25, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(997), 1, + [4613] = 26, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(999), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(1001), 1, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(890), 1, anon_sym_LBRACE, - ACTIONS(1003), 1, + ACTIONS(898), 1, + anon_sym_DQUOTE, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(988), 1, + sym_identifier, + ACTIONS(990), 1, anon_sym_not, - ACTIONS(1007), 1, + ACTIONS(1014), 1, anon_sym_, - ACTIONS(1009), 1, - anon_sym_DQUOTE, - STATE(206), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1610), 1, - sym_expression, - STATE(1618), 1, + STATE(1500), 1, sym_primary_expression, - STATE(1854), 1, + STATE(1565), 1, + sym_call, + STATE(1613), 1, + sym_expression, + STATE(1771), 1, sym_selector_expression, - STATE(2413), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(882), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1936), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1005), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(894), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1975), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 6, + ACTIONS(900), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27810,8 +29659,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27826,72 +29676,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6545] = 25, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, + [4730] = 26, + ACTIONS(1016), 1, sym_identifier, - ACTIONS(997), 1, + ACTIONS(1020), 1, anon_sym_LPAREN, - ACTIONS(999), 1, + ACTIONS(1022), 1, anon_sym_LBRACK, - ACTIONS(1001), 1, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1026), 1, anon_sym_LBRACE, - ACTIONS(1003), 1, + ACTIONS(1028), 1, anon_sym_not, - ACTIONS(1007), 1, + ACTIONS(1032), 1, anon_sym_, - ACTIONS(1009), 1, + ACTIONS(1034), 1, anon_sym_DQUOTE, - STATE(206), 1, + ACTIONS(1038), 1, + sym_string_start, + STATE(310), 1, aux_sym_long_expression_repeat1, - STATE(1610), 1, - sym_expression, - STATE(1618), 1, + STATE(370), 1, sym_primary_expression, - STATE(1854), 1, + STATE(735), 1, + sym_expression, + STATE(870), 1, sym_selector_expression, - STATE(2413), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(1018), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1936), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1005), 3, + ACTIONS(1030), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1975), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 6, + ACTIONS(1036), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27899,8 +29750,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -27915,72 +29767,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6659] = 25, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, + [4847] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(997), 1, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(999), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1001), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1003), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(1009), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1011), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1618), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1040), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1651), 1, - sym_expression, - STATE(1854), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2413), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1936), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1005), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1975), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -27988,8 +29843,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28004,72 +29860,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6773] = 25, - ACTIONS(768), 1, + [4968] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(784), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(997), 1, + ACTIONS(918), 1, anon_sym_LPAREN, - ACTIONS(999), 1, + ACTIONS(920), 1, anon_sym_LBRACK, - ACTIONS(1001), 1, + ACTIONS(922), 1, anon_sym_LBRACE, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1007), 1, - anon_sym_, - ACTIONS(1009), 1, + ACTIONS(930), 1, anon_sym_DQUOTE, - STATE(206), 1, + ACTIONS(948), 1, + anon_sym_, + STATE(287), 1, aux_sym_long_expression_repeat1, - STATE(1610), 1, + STATE(1490), 1, + sym_call, + STATE(1546), 1, sym_expression, - STATE(1618), 1, + STATE(1564), 1, sym_primary_expression, - STATE(1854), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2413), 1, + STATE(2441), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1936), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1005), 3, + ACTIONS(926), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1975), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28077,8 +29934,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28093,72 +29951,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [6887] = 25, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(489), 1, + [5085] = 26, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(497), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1013), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(1015), 1, + ACTIONS(996), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, + anon_sym_LBRACK, + ACTIONS(1000), 1, + anon_sym_LBRACE, + ACTIONS(1002), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1006), 1, anon_sym_, - STATE(211), 1, + ACTIONS(1008), 1, + anon_sym_DQUOTE, + STATE(232), 1, aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1387), 1, + STATE(1419), 1, sym_primary_expression, - STATE(1399), 1, + STATE(1431), 1, + sym_call, + STATE(1460), 1, + sym_expression, + STATE(1615), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2508), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(495), 3, + ACTIONS(1004), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1526), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28166,8 +30025,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28182,72 +30042,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7001] = 25, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(489), 1, + [5202] = 26, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(497), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1013), 1, + ACTIONS(994), 1, sym_identifier, - ACTIONS(1015), 1, + ACTIONS(996), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, + anon_sym_LBRACK, + ACTIONS(1000), 1, + anon_sym_LBRACE, + ACTIONS(1002), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1006), 1, anon_sym_, - STATE(211), 1, + ACTIONS(1008), 1, + anon_sym_DQUOTE, + STATE(232), 1, aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1387), 1, + STATE(1419), 1, sym_primary_expression, - STATE(1399), 1, + STATE(1431), 1, + sym_call, + STATE(1460), 1, + sym_expression, + STATE(1615), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2508), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(495), 3, + ACTIONS(1004), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1526), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28255,8 +30116,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28271,72 +30133,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7115] = 25, - ACTIONS(949), 1, + [5319] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(957), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(959), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(961), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(965), 1, - anon_sym_, - ACTIONS(967), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - STATE(201), 1, - aux_sym_long_expression_repeat1, - STATE(350), 1, - sym_expression, - STATE(392), 1, + ACTIONS(1042), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(694), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2462), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(2965), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(951), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(899), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(963), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28344,8 +30209,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28360,72 +30226,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7229] = 25, - ACTIONS(485), 1, + [5440] = 26, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1013), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(1015), 1, + ACTIONS(1046), 1, anon_sym_not, - ACTIONS(1019), 1, + ACTIONS(1048), 1, anon_sym_, - STATE(195), 1, + STATE(242), 1, aux_sym_long_expression_repeat1, - STATE(1153), 1, + STATE(1186), 1, sym_expression, - STATE(1387), 1, + STATE(1196), 1, sym_primary_expression, - STATE(1399), 1, + STATE(1200), 1, + sym_call, + STATE(1272), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(495), 3, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1526), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28433,8 +30300,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28449,72 +30317,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7343] = 25, - ACTIONS(485), 1, + [5557] = 26, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1013), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(1015), 1, + ACTIONS(1046), 1, anon_sym_not, - ACTIONS(1017), 1, + ACTIONS(1050), 1, anon_sym_, - STATE(211), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1161), 1, + STATE(1191), 1, sym_expression, - STATE(1387), 1, + STATE(1196), 1, sym_primary_expression, - STATE(1399), 1, + STATE(1200), 1, + sym_call, + STATE(1272), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(495), 3, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1526), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28522,8 +30391,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28538,72 +30408,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7457] = 25, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1023), 1, + [5674] = 26, + ACTIONS(1020), 1, anon_sym_LPAREN, - ACTIONS(1025), 1, + ACTIONS(1022), 1, anon_sym_LBRACK, - ACTIONS(1027), 1, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1026), 1, anon_sym_LBRACE, - ACTIONS(1029), 1, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1052), 1, + sym_identifier, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(1033), 1, + ACTIONS(1056), 1, anon_sym_, - ACTIONS(1035), 1, - anon_sym_DQUOTE, - STATE(224), 1, + STATE(249), 1, aux_sym_long_expression_repeat1, - STATE(1564), 1, - sym_primary_expression, - STATE(1587), 1, + STATE(735), 1, sym_expression, - STATE(1726), 1, + STATE(848), 1, + sym_primary_expression, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2475), 1, sym_dotted_name, - STATE(3016), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(1018), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1824), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1031), 3, + ACTIONS(1030), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1848), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(1036), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28611,8 +30482,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28627,74 +30499,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7571] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [5791] = 26, + ACTIONS(1020), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1022), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1026), 1, anon_sym_LBRACE, - ACTIONS(523), 1, - anon_sym_STAR, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1034), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(1052), 1, sym_identifier, - STATE(1408), 1, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1056), 1, + anon_sym_, + STATE(249), 1, + aux_sym_long_expression_repeat1, + STATE(735), 1, + sym_expression, + STATE(848), 1, sym_primary_expression, - STATE(1592), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2341), 1, - sym_expression, - STATE(2411), 1, + STATE(2475), 1, sym_dotted_name, - STATE(2872), 1, - sym_list_splat, - STATE(3161), 1, + STATE(2974), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(1018), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1030), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1036), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28702,8 +30573,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28718,72 +30590,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7689] = 25, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1023), 1, + [5908] = 26, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(1025), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(1027), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(1029), 1, + ACTIONS(423), 1, + anon_sym_DQUOTE, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1044), 1, + sym_identifier, + ACTIONS(1046), 1, anon_sym_not, - ACTIONS(1033), 1, + ACTIONS(1048), 1, anon_sym_, - ACTIONS(1035), 1, - anon_sym_DQUOTE, - STATE(224), 1, + STATE(242), 1, aux_sym_long_expression_repeat1, - STATE(1564), 1, - sym_primary_expression, - STATE(1587), 1, + STATE(1186), 1, sym_expression, - STATE(1726), 1, + STATE(1196), 1, + sym_primary_expression, + STATE(1200), 1, + sym_call, + STATE(1272), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1824), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1031), 3, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1848), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28791,8 +30664,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28807,73 +30681,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7803] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [6025] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(906), 1, sym_identifier, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2342), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(912), 1, + anon_sym_, + STATE(209), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, sym_expression, - STATE(2411), 1, + STATE(1214), 1, + sym_selector_expression, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1037), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(910), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28881,8 +30755,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28897,72 +30772,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [7919] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1043), 1, + [6142] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1049), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(1051), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(1055), 1, - anon_sym_, - ACTIONS(1057), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - STATE(220), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(1058), 1, + anon_sym_, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1021), 1, - sym_primary_expression, - STATE(1042), 1, + STATE(1168), 1, sym_expression, - STATE(1051), 1, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2456), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1041), 2, + ACTIONS(435), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1053), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(451), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 6, + ACTIONS(459), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -28970,8 +30846,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -28986,72 +30863,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8033] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1043), 1, + [6259] = 26, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1049), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1055), 1, - anon_sym_, - ACTIONS(1057), 1, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(1061), 1, + ACTIONS(431), 1, sym_string_start, - STATE(220), 1, + ACTIONS(1044), 1, + sym_identifier, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1048), 1, + anon_sym_, + STATE(242), 1, aux_sym_long_expression_repeat1, - STATE(1021), 1, - sym_primary_expression, - STATE(1042), 1, + STATE(1186), 1, sym_expression, - STATE(1051), 1, + STATE(1196), 1, + sym_primary_expression, + STATE(1200), 1, + sym_call, + STATE(1272), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2468), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1041), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1081), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1053), 3, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29059,8 +30937,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29075,74 +30954,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8147] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [6376] = 26, + ACTIONS(1020), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1022), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1026), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1034), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1063), 1, - anon_sym_RPAREN, - STATE(1750), 1, + ACTIONS(1052), 1, + sym_identifier, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1060), 1, + anon_sym_, + STATE(271), 1, + aux_sym_long_expression_repeat1, + STATE(720), 1, + sym_expression, + STATE(848), 1, sym_primary_expression, - STATE(1853), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2348), 1, - sym_expression, - STATE(2472), 1, + STATE(2475), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(2974), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + ACTIONS(1018), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1030), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(1036), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29150,8 +31028,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29166,72 +31045,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8265] = 25, - ACTIONS(1039), 1, + [6493] = 26, + ACTIONS(880), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1049), 1, + ACTIONS(890), 1, anon_sym_LBRACE, - ACTIONS(1051), 1, + ACTIONS(892), 1, anon_sym_not, - ACTIONS(1057), 1, + ACTIONS(898), 1, anon_sym_DQUOTE, - ACTIONS(1061), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(1065), 1, + ACTIONS(1062), 1, anon_sym_, - STATE(195), 1, + STATE(196), 1, aux_sym_long_expression_repeat1, - STATE(1007), 1, - sym_expression, - STATE(1021), 1, + STATE(1562), 1, sym_primary_expression, - STATE(1051), 1, + STATE(1565), 1, + sym_call, + STATE(1572), 1, + sym_expression, + STATE(1652), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2428), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1041), 2, + ACTIONS(882), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1081), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1053), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(894), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 6, + ACTIONS(900), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29239,8 +31119,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29255,72 +31136,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8379] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1043), 1, + [6610] = 26, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1049), 1, + ACTIONS(890), 1, anon_sym_LBRACE, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1055), 1, - anon_sym_, - ACTIONS(1057), 1, + ACTIONS(898), 1, anon_sym_DQUOTE, - ACTIONS(1061), 1, + ACTIONS(902), 1, sym_string_start, - STATE(220), 1, + ACTIONS(988), 1, + sym_identifier, + ACTIONS(990), 1, + anon_sym_not, + ACTIONS(992), 1, + anon_sym_, + STATE(234), 1, aux_sym_long_expression_repeat1, - STATE(1021), 1, + STATE(1500), 1, sym_primary_expression, - STATE(1042), 1, + STATE(1565), 1, + sym_call, + STATE(1572), 1, sym_expression, - STATE(1051), 1, + STATE(1771), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2463), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1041), 2, + ACTIONS(882), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1081), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1053), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(894), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 6, + ACTIONS(900), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29328,8 +31210,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29344,72 +31227,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8493] = 25, - ACTIONS(485), 1, + [6727] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1067), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1073), 1, - anon_sym_, - STATE(234), 1, - aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, + ACTIONS(740), 1, + anon_sym_COLON, + STATE(1430), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, + sym_selector_expression, + STATE(2304), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2810), 1, + sym_slice, + STATE(3173), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1071), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29417,8 +31303,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29433,74 +31320,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8607] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, + [6848] = 28, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1075), 1, - anon_sym_RPAREN, - STATE(1750), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(740), 1, + anon_sym_COLON, + STATE(1430), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2348), 1, + STATE(2297), 1, sym_expression, - STATE(2472), 1, + STATE(2514), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(2819), 1, + sym_slice, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29508,8 +31396,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29524,72 +31413,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8725] = 25, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(1021), 1, + [6969] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(1023), 1, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1025), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1027), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1029), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(1035), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1564), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1064), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1567), 1, - sym_expression, - STATE(1726), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3016), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 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(1824), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1031), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1848), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29597,8 +31489,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29613,72 +31506,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8839] = 25, - ACTIONS(485), 1, + [7090] = 26, + ACTIONS(1020), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(1022), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(1026), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(1034), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1079), 1, + ACTIONS(1052), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(1056), 1, anon_sym_, - STATE(227), 1, + STATE(249), 1, aux_sym_long_expression_repeat1, - STATE(1161), 1, + STATE(735), 1, sym_expression, - STATE(1594), 1, + STATE(848), 1, sym_primary_expression, - STATE(1802), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2431), 1, + STATE(2475), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(1018), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1083), 3, + ACTIONS(1030), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(1036), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29686,8 +31580,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29702,72 +31597,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [8953] = 25, - ACTIONS(485), 1, + [7207] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1079), 1, + ACTIONS(938), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(940), 1, anon_sym_not, - ACTIONS(1085), 1, + ACTIONS(952), 1, anon_sym_, - STATE(227), 1, + STATE(207), 1, aux_sym_long_expression_repeat1, - STATE(1161), 1, + STATE(1171), 1, sym_expression, - STATE(1594), 1, + STATE(1350), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, STATE(2431), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(435), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1083), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(451), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(459), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29775,8 +31671,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29791,72 +31688,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9067] = 25, - ACTIONS(485), 1, + [7324] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1079), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - ACTIONS(1087), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1153), 1, - sym_expression, - STATE(1594), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2431), 1, + STATE(2383), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + ACTIONS(1066), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1083), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29864,8 +31763,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29880,74 +31780,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9181] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [7443] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1089), 1, - anon_sym_RPAREN, - STATE(1750), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(1010), 1, + anon_sym_, + STATE(247), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1376), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2348), 1, - sym_expression, - STATE(2472), 1, + STATE(2456), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(451), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -29955,8 +31854,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -29971,72 +31871,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9299] = 25, - ACTIONS(485), 1, + [7560] = 28, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1079), 1, - sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - ACTIONS(1085), 1, - anon_sym_, - STATE(227), 1, - aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1594), 1, + ACTIONS(1068), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2431), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1083), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30044,8 +31947,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30060,72 +31964,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9413] = 25, - ACTIONS(1091), 1, + [7681] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1099), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1103), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(1107), 1, - anon_sym_, - ACTIONS(1109), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - STATE(235), 1, - aux_sym_long_expression_repeat1, - STATE(320), 1, - sym_expression, - STATE(389), 1, + ACTIONS(1070), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(702), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1093), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(907), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1105), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30133,8 +32040,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30149,72 +32057,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9527] = 25, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(1021), 1, + [7802] = 26, + ACTIONS(1072), 1, sym_identifier, - ACTIONS(1023), 1, + ACTIONS(1076), 1, anon_sym_LPAREN, - ACTIONS(1025), 1, + ACTIONS(1078), 1, anon_sym_LBRACK, - ACTIONS(1027), 1, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1082), 1, anon_sym_LBRACE, - ACTIONS(1029), 1, + ACTIONS(1084), 1, anon_sym_not, - ACTIONS(1033), 1, + ACTIONS(1088), 1, anon_sym_, - ACTIONS(1035), 1, + ACTIONS(1090), 1, anon_sym_DQUOTE, - STATE(224), 1, + ACTIONS(1094), 1, + sym_string_start, + STATE(267), 1, aux_sym_long_expression_repeat1, - STATE(1564), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1587), 1, + STATE(1049), 1, sym_expression, - STATE(1726), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2470), 1, + STATE(1064), 1, + sym_call, + STATE(2439), 1, sym_dotted_name, - STATE(3016), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(1074), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1824), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1031), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1086), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1848), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(1092), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30222,8 +32131,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30238,72 +32148,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9641] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1095), 1, + [7919] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(1103), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(1107), 1, - anon_sym_, - ACTIONS(1109), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - STATE(235), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(1010), 1, + anon_sym_, + STATE(247), 1, aux_sym_long_expression_repeat1, - STATE(320), 1, + STATE(1171), 1, sym_expression, - STATE(389), 1, + STATE(1376), 1, sym_primary_expression, - STATE(702), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2456), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1093), 2, + ACTIONS(435), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(907), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1105), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(451), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 6, + ACTIONS(459), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30311,8 +32222,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30327,72 +32239,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9755] = 25, - ACTIONS(9), 1, + [8036] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(1023), 1, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1025), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1027), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1035), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1115), 1, - anon_sym_, - STATE(296), 1, - aux_sym_long_expression_repeat1, - STATE(1569), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1096), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1587), 1, - sym_expression, - STATE(1770), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2401), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3016), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 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(1824), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1031), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30400,8 +32315,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30416,72 +32332,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9869] = 25, - ACTIONS(485), 1, + [8157] = 26, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1076), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(1078), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(1082), 1, anon_sym_LBRACE, - ACTIONS(497), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(1084), 1, anon_sym_not, - ACTIONS(1117), 1, + ACTIONS(1088), 1, anon_sym_, - STATE(195), 1, + ACTIONS(1090), 1, + anon_sym_DQUOTE, + ACTIONS(1094), 1, + sym_string_start, + STATE(267), 1, aux_sym_long_expression_repeat1, - STATE(1153), 1, + STATE(1018), 1, + sym_primary_expression, + STATE(1049), 1, sym_expression, - STATE(1209), 1, + STATE(1063), 1, sym_selector_expression, - STATE(1952), 1, - sym_primary_expression, - STATE(2414), 1, + STATE(1064), 1, + sym_call, + STATE(2439), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(1074), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1071), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1086), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(1092), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30489,8 +32406,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30505,72 +32423,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [9983] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1095), 1, + [8274] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1099), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1103), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(1109), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1119), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(313), 1, - sym_expression, - STATE(389), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(740), 1, + anon_sym_COLON, + STATE(1430), 1, sym_primary_expression, - STATE(702), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2306), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2735), 1, + sym_slice, + STATE(3173), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1093), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(907), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1105), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30578,8 +32499,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30594,72 +32516,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10097] = 25, - ACTIONS(1091), 1, + [8395] = 26, + ACTIONS(880), 1, sym_identifier, - ACTIONS(1095), 1, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(1099), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(890), 1, anon_sym_LBRACE, - ACTIONS(1103), 1, + ACTIONS(892), 1, anon_sym_not, - ACTIONS(1107), 1, - anon_sym_, - ACTIONS(1109), 1, + ACTIONS(898), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, + ACTIONS(902), 1, sym_string_start, - STATE(235), 1, + ACTIONS(1062), 1, + anon_sym_, + STATE(196), 1, aux_sym_long_expression_repeat1, - STATE(320), 1, - sym_expression, - STATE(389), 1, + STATE(1562), 1, sym_primary_expression, - STATE(702), 1, + STATE(1565), 1, + sym_call, + STATE(1572), 1, + sym_expression, + STATE(1652), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2428), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1093), 2, + ACTIONS(882), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(907), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1105), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(894), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 6, + ACTIONS(900), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30667,8 +32590,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30683,72 +32607,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10211] = 25, - ACTIONS(485), 1, + [8512] = 26, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1076), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(1078), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(1082), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(1084), 1, + anon_sym_not, + ACTIONS(1090), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1073), 1, + ACTIONS(1098), 1, anon_sym_, - STATE(234), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1161), 1, + STATE(1018), 1, + sym_primary_expression, + STATE(1052), 1, sym_expression, - STATE(1209), 1, + STATE(1063), 1, sym_selector_expression, - STATE(1952), 1, - sym_primary_expression, - STATE(2414), 1, + STATE(1064), 1, + sym_call, + STATE(2439), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(1074), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1071), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1086), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(1092), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30756,8 +32681,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30772,7 +32698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10325] = 27, + [8629] = 28, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -30793,42 +32719,43 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(752), 1, + ACTIONS(740), 1, anon_sym_COLON, - STATE(1408), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2269), 1, + STATE(2299), 1, sym_expression, - STATE(2411), 1, + STATE(2514), 1, sym_dotted_name, - STATE(2720), 1, + STATE(2842), 1, sym_slice, - STATE(3161), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -30839,7 +32766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30847,8 +32774,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30863,74 +32791,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10443] = 27, - ACTIONS(756), 1, + [8750] = 26, + ACTIONS(880), 1, sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(890), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(892), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(898), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(1121), 1, - anon_sym_RPAREN, - STATE(1750), 1, + ACTIONS(1062), 1, + anon_sym_, + STATE(196), 1, + aux_sym_long_expression_repeat1, + STATE(1562), 1, sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2348), 1, + STATE(1565), 1, + sym_call, + STATE(1572), 1, sym_expression, - STATE(2472), 1, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3123), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + ACTIONS(882), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(894), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(900), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -30938,8 +32865,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -30954,72 +32882,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10561] = 25, - ACTIONS(884), 1, + [8867] = 26, + ACTIONS(1072), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(1076), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(1078), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(894), 1, + ACTIONS(1082), 1, anon_sym_LBRACE, - ACTIONS(896), 1, + ACTIONS(1084), 1, anon_sym_not, - ACTIONS(900), 1, + ACTIONS(1088), 1, anon_sym_, - ACTIONS(902), 1, + ACTIONS(1090), 1, anon_sym_DQUOTE, - ACTIONS(906), 1, + ACTIONS(1094), 1, sym_string_start, - STATE(290), 1, + STATE(267), 1, aux_sym_long_expression_repeat1, - STATE(1495), 1, - sym_expression, - STATE(1551), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1049), 1, + sym_expression, + STATE(1063), 1, sym_selector_expression, - STATE(2397), 1, + STATE(1064), 1, + sym_call, + STATE(2439), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, + ACTIONS(1074), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1830), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(898), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1086), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 6, + ACTIONS(1092), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31027,8 +32956,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31043,72 +32973,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10675] = 25, - ACTIONS(884), 1, + [8984] = 26, + ACTIONS(1100), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(1106), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(1109), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(1112), 1, anon_sym_lambda, - ACTIONS(894), 1, + ACTIONS(1115), 1, anon_sym_LBRACE, - ACTIONS(896), 1, + ACTIONS(1121), 1, anon_sym_not, - ACTIONS(900), 1, + ACTIONS(1127), 1, anon_sym_, - ACTIONS(902), 1, + ACTIONS(1130), 1, anon_sym_DQUOTE, - ACTIONS(906), 1, + ACTIONS(1136), 1, sym_string_start, - STATE(290), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1495), 1, - sym_expression, - STATE(1551), 1, - sym_primary_expression, - STATE(1762), 1, + STATE(1214), 1, sym_selector_expression, - STATE(2397), 1, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2538), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, + ACTIONS(1103), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1830), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(898), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1124), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + ACTIONS(1118), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 6, + ACTIONS(1133), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31116,8 +33047,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31132,74 +33064,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10789] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [9101] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1143), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1145), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1149), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1155), 1, + anon_sym_, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - STATE(1408), 1, + STATE(274), 1, + aux_sym_long_expression_repeat1, + STATE(403), 1, sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2259), 1, + STATE(729), 1, sym_expression, - STATE(2411), 1, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, sym_dotted_name, - STATE(2830), 1, - sym_slice, - STATE(3161), 1, + STATE(3059), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(1141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(952), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1159), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31207,8 +33138,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31223,74 +33155,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [10907] = 27, - ACTIONS(756), 1, + [9218] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(758), 1, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1123), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, - STATE(1750), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2348), 1, + STATE(2374), 1, sym_expression, - STATE(2472), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2900), 1, + STATE(2913), 1, sym_keyword_argument, - STATE(3189), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31298,8 +33231,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31314,74 +33248,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11025] = 27, - ACTIONS(756), 1, + [9339] = 26, + ACTIONS(1139), 1, sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(1143), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1145), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1149), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(1125), 1, - anon_sym_RPAREN, - STATE(1750), 1, + ACTIONS(1165), 1, + anon_sym_, + STATE(271), 1, + aux_sym_long_expression_repeat1, + STATE(403), 1, sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2348), 1, + STATE(739), 1, sym_expression, - STATE(2472), 1, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3059), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + ACTIONS(1141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(952), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(1159), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31389,8 +33322,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31405,74 +33339,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11143] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [9456] = 26, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(956), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(958), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, + ACTIONS(1167), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - STATE(1408), 1, + ACTIONS(1169), 1, + anon_sym_, + STATE(276), 1, + aux_sym_long_expression_repeat1, + STATE(1658), 1, + sym_expression, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2273), 1, - sym_expression, - STATE(2411), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2869), 1, - sym_slice, - STATE(3161), 1, + STATE(3203), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(764), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31480,8 +33413,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31496,72 +33430,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11261] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, + [9573] = 26, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(45), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(55), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1023), 1, + ACTIONS(956), 1, anon_sym_LPAREN, - ACTIONS(1025), 1, + ACTIONS(958), 1, anon_sym_LBRACK, - ACTIONS(1027), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(1035), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(1115), 1, + ACTIONS(1167), 1, + sym_identifier, + ACTIONS(1171), 1, anon_sym_, - STATE(296), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1569), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1587), 1, + STATE(1703), 1, sym_expression, - STATE(1770), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2401), 1, + STATE(2501), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(764), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1824), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1031), 3, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(786), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31569,8 +33504,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31585,73 +33521,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11375] = 26, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [9690] = 26, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(956), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(958), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, + ACTIONS(1167), 1, sym_identifier, - STATE(1408), 1, + ACTIONS(1169), 1, + anon_sym_, + STATE(276), 1, + aux_sym_long_expression_repeat1, + STATE(1658), 1, + sym_expression, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2338), 1, - sym_expression, - STATE(2411), 1, + STATE(2501), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3203), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1127), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1793), 2, + ACTIONS(764), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31659,8 +33595,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31675,74 +33612,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11491] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [9807] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - STATE(1408), 1, + ACTIONS(1175), 1, + anon_sym_not, + ACTIONS(1177), 1, + anon_sym_, + STATE(283), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1620), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1669), 1, sym_selector_expression, - STATE(2312), 1, - sym_expression, - STATE(2411), 1, + STATE(1765), 1, + sym_call, + STATE(2480), 1, sym_dotted_name, - STATE(2896), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(978), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31750,8 +33686,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31766,74 +33703,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11609] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [9924] = 26, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(956), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(958), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(968), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, + ACTIONS(1167), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - STATE(1408), 1, + ACTIONS(1169), 1, + anon_sym_, + STATE(276), 1, + aux_sym_long_expression_repeat1, + STATE(1658), 1, + sym_expression, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2256), 1, - sym_expression, - STATE(2411), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2740), 1, - sym_slice, - STATE(3161), 1, + STATE(3203), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(764), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(964), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31841,8 +33777,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31857,74 +33794,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11727] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [10041] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1143), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1145), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1149), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1155), 1, + anon_sym_, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - STATE(1408), 1, + STATE(274), 1, + aux_sym_long_expression_repeat1, + STATE(403), 1, sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2261), 1, + STATE(729), 1, sym_expression, - STATE(2411), 1, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, sym_dotted_name, - STATE(2706), 1, - sym_slice, - STATE(3161), 1, + STATE(3059), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(1141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(952), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1159), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -31932,8 +33868,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -31948,72 +33885,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11845] = 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(1023), 1, + [10158] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(1025), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(1027), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(1035), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(1115), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1175), 1, + anon_sym_not, + ACTIONS(1177), 1, anon_sym_, - STATE(296), 1, + STATE(283), 1, aux_sym_long_expression_repeat1, - STATE(1569), 1, - sym_primary_expression, - STATE(1587), 1, + STATE(1171), 1, sym_expression, - STATE(1770), 1, + STATE(1620), 1, + sym_primary_expression, + STATE(1669), 1, sym_selector_expression, - STATE(2401), 1, + STATE(1765), 1, + sym_call, + STATE(2480), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(13), 2, + ACTIONS(435), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1031), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(978), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(459), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32021,8 +33959,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32037,74 +33976,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [11959] = 27, - ACTIONS(756), 1, + [10275] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(758), 1, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1129), 1, + ACTIONS(1179), 1, anon_sym_RPAREN, - STATE(1750), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2348), 1, + STATE(2374), 1, sym_expression, - STATE(2472), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2900), 1, + STATE(2913), 1, sym_keyword_argument, - STATE(3189), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32112,8 +34052,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32128,74 +34069,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12077] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [10396] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - STATE(1408), 1, + ACTIONS(1175), 1, + anon_sym_not, + ACTIONS(1181), 1, + anon_sym_, + STATE(271), 1, + aux_sym_long_expression_repeat1, + STATE(1168), 1, + sym_expression, + STATE(1620), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1669), 1, sym_selector_expression, - STATE(2275), 1, - sym_expression, - STATE(2411), 1, + STATE(1765), 1, + sym_call, + STATE(2480), 1, sym_dotted_name, - STATE(2771), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(978), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32203,8 +34143,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32219,74 +34160,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12195] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [10513] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1143), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1145), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1149), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1155), 1, + anon_sym_, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - STATE(1408), 1, + STATE(274), 1, + aux_sym_long_expression_repeat1, + STATE(403), 1, sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2278), 1, + STATE(729), 1, sym_expression, - STATE(2411), 1, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, sym_dotted_name, - STATE(2702), 1, - sym_slice, - STATE(3161), 1, + STATE(3059), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(1141), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(952), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1159), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32294,8 +34234,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32310,72 +34251,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12313] = 25, - ACTIONS(485), 1, + [10630] = 28, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1135), 1, - anon_sym_, - STATE(263), 1, - aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1961), 1, + ACTIONS(1183), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(2021), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1071), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32383,8 +34327,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32399,74 +34344,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12427] = 27, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [10751] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(525), 1, - anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(752), 1, - anon_sym_COLON, - STATE(1408), 1, + ACTIONS(1175), 1, + anon_sym_not, + ACTIONS(1177), 1, + anon_sym_, + STATE(283), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1620), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1669), 1, sym_selector_expression, - STATE(2262), 1, - sym_expression, - STATE(2411), 1, + STATE(1765), 1, + sym_call, + STATE(2480), 1, sym_dotted_name, - STATE(2747), 1, - sym_slice, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(978), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32474,8 +34418,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32490,72 +34435,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12545] = 25, - ACTIONS(953), 1, + [10868] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(918), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(920), 1, anon_sym_LBRACK, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(959), 1, + ACTIONS(922), 1, anon_sym_LBRACE, - ACTIONS(967), 1, + ACTIONS(930), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, - sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1141), 1, + ACTIONS(1185), 1, anon_sym_, - STATE(262), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(327), 1, - sym_primary_expression, - STATE(350), 1, + STATE(1490), 1, + sym_call, + STATE(1551), 1, sym_expression, - STATE(640), 1, + STATE(1564), 1, + sym_primary_expression, + STATE(1704), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2441), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(951), 2, + ACTIONS(13), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(899), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(963), 3, + ACTIONS(926), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(900), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 6, + ACTIONS(51), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32563,8 +34509,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32579,72 +34526,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12659] = 25, - ACTIONS(953), 1, + [10985] = 26, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(959), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(967), 1, + ACTIONS(1008), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, - sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1141), 1, + ACTIONS(1187), 1, anon_sym_, - STATE(262), 1, + STATE(290), 1, aux_sym_long_expression_repeat1, - STATE(327), 1, + STATE(1430), 1, sym_primary_expression, - STATE(350), 1, + STATE(1431), 1, + sym_call, + STATE(1460), 1, sym_expression, - STATE(640), 1, + STATE(1559), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2514), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(951), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(899), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(963), 3, + ACTIONS(1004), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(900), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32652,8 +34600,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32668,72 +34617,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12773] = 25, - ACTIONS(485), 1, + [11102] = 28, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(493), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(497), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1143), 1, - anon_sym_, - STATE(264), 1, - aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1334), 1, + ACTIONS(740), 1, + anon_sym_COLON, + STATE(1430), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2290), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2851), 1, + sym_slice, + STATE(3173), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(495), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32741,8 +34693,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32757,72 +34710,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [12887] = 25, - ACTIONS(485), 1, + [11223] = 26, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(1008), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - ACTIONS(1135), 1, + ACTIONS(1189), 1, anon_sym_, - STATE(263), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1961), 1, + STATE(1430), 1, sym_primary_expression, - STATE(2021), 1, + STATE(1431), 1, + sym_call, + STATE(1442), 1, + sym_expression, + STATE(1559), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2514), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1071), 3, + ACTIONS(1004), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32830,8 +34784,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32846,74 +34801,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13001] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [11340] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1145), 1, - anon_sym_RPAREN, - STATE(1750), 1, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + ACTIONS(1191), 1, + anon_sym_, + STATE(219), 1, + aux_sym_long_expression_repeat1, + STATE(1171), 1, + sym_expression, + STATE(1592), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1649), 1, sym_selector_expression, - STATE(2348), 1, - sym_expression, - STATE(2472), 1, + STATE(1765), 1, + sym_call, + STATE(2492), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3223), 1, sym_quant_op, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + ACTIONS(435), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(978), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 6, sym_integer, + sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -32921,8 +34875,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -32937,72 +34892,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13119] = 25, - ACTIONS(953), 1, + [11457] = 26, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(959), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(967), 1, + ACTIONS(1008), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, - sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1147), 1, + ACTIONS(1187), 1, anon_sym_, - STATE(195), 1, + STATE(290), 1, aux_sym_long_expression_repeat1, - STATE(311), 1, - sym_expression, - STATE(327), 1, + STATE(1430), 1, sym_primary_expression, - STATE(640), 1, + STATE(1431), 1, + sym_call, + STATE(1460), 1, + sym_expression, + STATE(1559), 1, sym_selector_expression, - STATE(2452), 1, + STATE(2514), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(951), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(899), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(963), 3, + ACTIONS(1004), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(900), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33010,8 +34966,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33026,72 +34983,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13233] = 25, - ACTIONS(485), 1, + [11574] = 26, + ACTIONS(1143), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(1145), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(1149), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(1131), 1, + ACTIONS(1193), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(1195), 1, anon_sym_not, - ACTIONS(1149), 1, + ACTIONS(1197), 1, anon_sym_, - STATE(195), 1, + STATE(304), 1, aux_sym_long_expression_repeat1, - STATE(1153), 1, - sym_expression, - STATE(1961), 1, + STATE(549), 1, sym_primary_expression, - STATE(2021), 1, + STATE(729), 1, + sym_expression, + STATE(876), 1, sym_selector_expression, - STATE(2429), 1, + STATE(881), 1, + sym_call, + STATE(2496), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(1141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1071), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(1159), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33099,8 +35057,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33115,72 +35074,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13347] = 25, - ACTIONS(485), 1, + [11691] = 28, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(493), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(497), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(1151), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1153), 1, - sym_expression, - STATE(1334), 1, + ACTIONS(1199), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1905), 1, sym_selector_expression, + STATE(2374), 1, + sym_expression, STATE(2501), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(495), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33188,8 +35150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33204,72 +35167,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13461] = 25, - ACTIONS(485), 1, + [11812] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1131), 1, + ACTIONS(974), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(976), 1, anon_sym_not, - ACTIONS(1135), 1, + ACTIONS(1191), 1, anon_sym_, - STATE(263), 1, + STATE(219), 1, aux_sym_long_expression_repeat1, - STATE(1161), 1, + STATE(1171), 1, sym_expression, - STATE(1961), 1, + STATE(1592), 1, sym_primary_expression, - STATE(2021), 1, + STATE(1649), 1, sym_selector_expression, - STATE(2429), 1, + STATE(1765), 1, + sym_call, + STATE(2492), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(435), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1071), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(978), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(459), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33277,8 +35241,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33293,72 +35258,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13575] = 25, - ACTIONS(485), 1, + [11929] = 28, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(493), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(497), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(1143), 1, - anon_sym_, - STATE(264), 1, - aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1334), 1, + ACTIONS(1201), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1905), 1, sym_selector_expression, + STATE(2374), 1, + sym_expression, STATE(2501), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(495), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33366,8 +35334,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33382,72 +35351,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13689] = 25, - ACTIONS(485), 1, + [12050] = 26, + ACTIONS(1076), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(1078), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(1082), 1, anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(497), 1, + ACTIONS(1090), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1203), 1, sym_identifier, - ACTIONS(1143), 1, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1207), 1, anon_sym_, - STATE(264), 1, + STATE(302), 1, aux_sym_long_expression_repeat1, - STATE(1161), 1, + STATE(1049), 1, sym_expression, - STATE(1334), 1, + STATE(1054), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1059), 1, sym_selector_expression, - STATE(2501), 1, + STATE(1064), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, + ACTIONS(1074), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(495), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1086), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1092), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(1092), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33455,8 +35425,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33471,72 +35442,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13803] = 25, - ACTIONS(768), 1, + [12167] = 26, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(774), 1, + ACTIONS(527), 1, anon_sym_not, - ACTIONS(784), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(997), 1, + ACTIONS(684), 1, + sym_identifier, + ACTIONS(996), 1, anon_sym_LPAREN, - ACTIONS(999), 1, + ACTIONS(998), 1, anon_sym_LBRACK, - ACTIONS(1001), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - ACTIONS(1009), 1, + ACTIONS(1008), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, - sym_identifier, - ACTIONS(1155), 1, + ACTIONS(1187), 1, anon_sym_, - STATE(269), 1, + STATE(290), 1, aux_sym_long_expression_repeat1, - STATE(1610), 1, - sym_expression, - STATE(1750), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1431), 1, + sym_call, + STATE(1460), 1, + sym_expression, + STATE(1559), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2514), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(507), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1936), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1005), 3, + ACTIONS(1004), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 6, + ACTIONS(535), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33544,8 +35516,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33560,72 +35533,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [13917] = 25, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(997), 1, + [12284] = 26, + ACTIONS(1076), 1, anon_sym_LPAREN, - ACTIONS(999), 1, + ACTIONS(1078), 1, anon_sym_LBRACK, - ACTIONS(1001), 1, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1082), 1, anon_sym_LBRACE, - ACTIONS(1009), 1, + ACTIONS(1090), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1203), 1, sym_identifier, - ACTIONS(1157), 1, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1207), 1, anon_sym_, - STATE(195), 1, + STATE(302), 1, aux_sym_long_expression_repeat1, - STATE(1651), 1, + STATE(1049), 1, sym_expression, - STATE(1750), 1, + STATE(1054), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1059), 1, sym_selector_expression, - STATE(2472), 1, + STATE(1064), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(1074), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1936), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1005), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1086), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1092), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 6, + ACTIONS(1092), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33633,8 +35607,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33649,72 +35624,74 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14031] = 25, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(997), 1, + [12401] = 27, + ACTIONS(507), 1, + anon_sym_DOT, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(999), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1001), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1009), 1, + ACTIONS(525), 1, + anon_sym_QMARK_DOT, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1155), 1, - anon_sym_, - STATE(269), 1, - aux_sym_long_expression_repeat1, - STATE(1610), 1, - sym_expression, - STATE(1750), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2371), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3173), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1936), 2, + ACTIONS(874), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1005), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 6, + ACTIONS(535), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33722,8 +35699,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33738,72 +35716,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14145] = 25, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(997), 1, + [12520] = 26, + ACTIONS(1143), 1, anon_sym_LPAREN, - ACTIONS(999), 1, + ACTIONS(1145), 1, anon_sym_LBRACK, - ACTIONS(1001), 1, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1149), 1, anon_sym_LBRACE, - ACTIONS(1009), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1193), 1, sym_identifier, - ACTIONS(1155), 1, + ACTIONS(1195), 1, + anon_sym_not, + ACTIONS(1197), 1, anon_sym_, - STATE(269), 1, + STATE(304), 1, aux_sym_long_expression_repeat1, - STATE(1610), 1, - sym_expression, - STATE(1750), 1, + STATE(549), 1, sym_primary_expression, - STATE(1853), 1, + STATE(729), 1, + sym_expression, + STATE(876), 1, sym_selector_expression, - STATE(2472), 1, + STATE(881), 1, + sym_call, + STATE(2496), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(758), 2, + ACTIONS(1141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1936), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1005), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 6, + ACTIONS(1159), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33811,8 +35790,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33827,72 +35807,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14259] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(975), 1, + [12637] = 26, + ACTIONS(1076), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(1078), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1082), 1, anon_sym_LBRACE, - ACTIONS(987), 1, + ACTIONS(1090), 1, anon_sym_DQUOTE, - ACTIONS(1159), 1, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1209), 1, anon_sym_, - STATE(273), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1394), 1, + STATE(1052), 1, sym_expression, - STATE(1408), 1, + STATE(1054), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1059), 1, sym_selector_expression, - STATE(2411), 1, + STATE(1064), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(1074), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1793), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(983), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1086), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1092), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(1092), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33900,8 +35881,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -33916,72 +35898,75 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14373] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, + [12754] = 28, + ACTIONS(762), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(987), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1161), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1398), 1, - sym_expression, - STATE(1408), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1211), 1, + anon_sym_RPAREN, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2411), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 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(1793), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(983), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -33989,8 +35974,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34005,72 +35991,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14487] = 25, - ACTIONS(953), 1, + [12875] = 26, + ACTIONS(1143), 1, anon_sym_LPAREN, - ACTIONS(955), 1, + ACTIONS(1145), 1, anon_sym_LBRACK, - ACTIONS(957), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(959), 1, + ACTIONS(1149), 1, anon_sym_LBRACE, - ACTIONS(967), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(1137), 1, + ACTIONS(1193), 1, sym_identifier, - ACTIONS(1139), 1, + ACTIONS(1195), 1, anon_sym_not, - ACTIONS(1141), 1, + ACTIONS(1213), 1, anon_sym_, - STATE(262), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(327), 1, + STATE(549), 1, sym_primary_expression, - STATE(350), 1, + STATE(739), 1, sym_expression, - STATE(640), 1, + STATE(876), 1, sym_selector_expression, - STATE(2452), 1, + STATE(881), 1, + sym_call, + STATE(2496), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(951), 2, + ACTIONS(1141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(899), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(963), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(900), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 6, + ACTIONS(1159), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34078,8 +36065,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34094,72 +36082,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14601] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(975), 1, + [12992] = 26, + ACTIONS(1143), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(1145), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1149), 1, anon_sym_LBRACE, - ACTIONS(987), 1, + ACTIONS(1157), 1, anon_sym_DQUOTE, - ACTIONS(1159), 1, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1193), 1, + sym_identifier, + ACTIONS(1195), 1, + anon_sym_not, + ACTIONS(1197), 1, anon_sym_, - STATE(273), 1, + STATE(304), 1, aux_sym_long_expression_repeat1, - STATE(1394), 1, - sym_expression, - STATE(1408), 1, + STATE(549), 1, sym_primary_expression, - STATE(1592), 1, + STATE(729), 1, + sym_expression, + STATE(876), 1, sym_selector_expression, - STATE(2411), 1, + STATE(881), 1, + sym_call, + STATE(2496), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(1141), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1793), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(983), 3, + ACTIONS(1153), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(1159), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34167,8 +36156,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34183,72 +36173,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14715] = 25, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, + [13109] = 26, + ACTIONS(1016), 1, sym_identifier, - ACTIONS(975), 1, + ACTIONS(1020), 1, anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(1022), 1, anon_sym_LBRACK, - ACTIONS(979), 1, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1026), 1, anon_sym_LBRACE, - ACTIONS(987), 1, - anon_sym_DQUOTE, - ACTIONS(1159), 1, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1032), 1, anon_sym_, - STATE(273), 1, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1038), 1, + sym_string_start, + STATE(310), 1, aux_sym_long_expression_repeat1, - STATE(1394), 1, - sym_expression, - STATE(1408), 1, + STATE(370), 1, sym_primary_expression, - STATE(1592), 1, + STATE(735), 1, + sym_expression, + STATE(870), 1, sym_selector_expression, - STATE(2411), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(507), 2, + ACTIONS(1018), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1793), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(983), 3, + ACTIONS(1030), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 6, + ACTIONS(1036), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34256,8 +36247,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34272,72 +36264,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14829] = 25, - ACTIONS(1043), 1, + [13226] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1020), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(1022), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(1049), 1, + ACTIONS(1026), 1, anon_sym_LBRACE, - ACTIONS(1057), 1, - anon_sym_DQUOTE, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1165), 1, + ACTIONS(1028), 1, anon_sym_not, - ACTIONS(1167), 1, + ACTIONS(1032), 1, anon_sym_, - STATE(286), 1, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1038), 1, + sym_string_start, + STATE(310), 1, aux_sym_long_expression_repeat1, - STATE(1006), 1, + STATE(370), 1, sym_primary_expression, - STATE(1042), 1, + STATE(735), 1, sym_expression, - STATE(1068), 1, + STATE(870), 1, sym_selector_expression, - STATE(2407), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1041), 2, + ACTIONS(1018), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1081), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1053), 3, + ACTIONS(1030), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 6, + ACTIONS(1036), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34345,8 +36338,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34361,7 +36355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [14943] = 25, + [13343] = 26, ACTIONS(407), 1, anon_sym_LPAREN, ACTIONS(409), 1, @@ -34376,21 +36370,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1171), 1, + ACTIONS(1217), 1, anon_sym_, - STATE(280), 1, + STATE(309), 1, aux_sym_long_expression_repeat1, - STATE(1176), 1, + STATE(1186), 1, sym_expression, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, @@ -34398,124 +36394,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1372), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(421), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1373), 3, + STATE(1404), 2, 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, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(429), 6, - sym_integer, - sym_float, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1376), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1377), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [15057] = 25, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(497), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1073), 1, - anon_sym_, - STATE(234), 1, - aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, - sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1071), 3, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34523,8 +36429,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34539,7 +36446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15171] = 25, + [13460] = 26, ACTIONS(407), 1, anon_sym_LPAREN, ACTIONS(409), 1, @@ -34554,21 +36461,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1173), 1, + ACTIONS(1219), 1, anon_sym_, - STATE(195), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1178), 1, + STATE(1191), 1, sym_expression, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, @@ -34576,23 +36485,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -34604,7 +36512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34612,8 +36520,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34628,72 +36537,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15285] = 25, - ACTIONS(1043), 1, + [13577] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1020), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(1022), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(1049), 1, + ACTIONS(1026), 1, anon_sym_LBRACE, - ACTIONS(1057), 1, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1034), 1, anon_sym_DQUOTE, - ACTIONS(1061), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1165), 1, - anon_sym_not, - ACTIONS(1167), 1, + ACTIONS(1221), 1, anon_sym_, - STATE(286), 1, + STATE(271), 1, aux_sym_long_expression_repeat1, - STATE(1006), 1, + STATE(370), 1, sym_primary_expression, - STATE(1042), 1, + STATE(720), 1, sym_expression, - STATE(1068), 1, + STATE(870), 1, sym_selector_expression, - STATE(2407), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1041), 2, + ACTIONS(1018), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1081), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1053), 3, + ACTIONS(1030), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 6, + ACTIONS(1036), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34701,8 +36611,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34717,7 +36628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15399] = 25, + [13694] = 26, ACTIONS(407), 1, anon_sym_LPAREN, ACTIONS(409), 1, @@ -34732,21 +36643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1171), 1, + ACTIONS(1217), 1, anon_sym_, - STATE(280), 1, + STATE(309), 1, aux_sym_long_expression_repeat1, - STATE(1176), 1, + STATE(1186), 1, sym_expression, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, @@ -34754,23 +36667,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -34782,7 +36694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34790,8 +36702,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34806,72 +36719,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15513] = 25, - ACTIONS(407), 1, + [13811] = 26, + ACTIONS(1076), 1, anon_sym_LPAREN, - ACTIONS(409), 1, + ACTIONS(1078), 1, anon_sym_LBRACK, - ACTIONS(411), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(413), 1, + ACTIONS(1082), 1, anon_sym_LBRACE, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(423), 1, + ACTIONS(1090), 1, anon_sym_DQUOTE, - ACTIONS(431), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1203), 1, sym_identifier, - ACTIONS(1171), 1, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1207), 1, anon_sym_, - STATE(280), 1, + STATE(302), 1, aux_sym_long_expression_repeat1, - STATE(1176), 1, + STATE(1049), 1, sym_expression, - STATE(1210), 1, + STATE(1054), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1059), 1, sym_selector_expression, - STATE(2454), 1, + STATE(1064), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(401), 2, + ACTIONS(1074), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1372), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(421), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1086), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1092), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 6, + ACTIONS(1092), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34879,8 +36793,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34895,72 +36810,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15627] = 25, - ACTIONS(888), 1, + [13928] = 26, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(441), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(894), 1, + ACTIONS(445), 1, anon_sym_LBRACE, - ACTIONS(902), 1, + ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(906), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1175), 1, + ACTIONS(974), 1, sym_identifier, - ACTIONS(1177), 1, + ACTIONS(976), 1, anon_sym_not, - ACTIONS(1179), 1, + ACTIONS(1191), 1, anon_sym_, - STATE(285), 1, + STATE(219), 1, aux_sym_long_expression_repeat1, - STATE(1495), 1, + STATE(1171), 1, sym_expression, - STATE(1575), 1, + STATE(1592), 1, sym_primary_expression, - STATE(1605), 1, + STATE(1649), 1, sym_selector_expression, - STATE(2445), 1, + STATE(1765), 1, + sym_call, + STATE(2492), 1, sym_dotted_name, - STATE(3106), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, + ACTIONS(435), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1830), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(898), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(978), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(1929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 6, + ACTIONS(459), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -34968,8 +36884,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -34984,72 +36901,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15741] = 25, - ACTIONS(888), 1, + [14045] = 26, + ACTIONS(407), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(409), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(894), 1, + ACTIONS(413), 1, anon_sym_LBRACE, - ACTIONS(902), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(423), 1, anon_sym_DQUOTE, - ACTIONS(906), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1175), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1177), 1, - anon_sym_not, - ACTIONS(1181), 1, + ACTIONS(1217), 1, anon_sym_, - STATE(195), 1, + STATE(309), 1, aux_sym_long_expression_repeat1, - STATE(1472), 1, + STATE(1186), 1, sym_expression, - STATE(1575), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1605), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3106), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, + ACTIONS(401), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1830), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(898), 3, + ACTIONS(421), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 6, + ACTIONS(429), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35057,8 +36975,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35073,72 +36992,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15855] = 25, - ACTIONS(1043), 1, + [14162] = 26, + ACTIONS(884), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(886), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1049), 1, + ACTIONS(890), 1, anon_sym_LBRACE, - ACTIONS(1057), 1, + ACTIONS(898), 1, anon_sym_DQUOTE, - ACTIONS(1061), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(1163), 1, + ACTIONS(988), 1, sym_identifier, - ACTIONS(1165), 1, + ACTIONS(990), 1, anon_sym_not, - ACTIONS(1183), 1, + ACTIONS(992), 1, anon_sym_, - STATE(195), 1, + STATE(234), 1, aux_sym_long_expression_repeat1, - STATE(1006), 1, + STATE(1500), 1, sym_primary_expression, - STATE(1007), 1, + STATE(1565), 1, + sym_call, + STATE(1572), 1, sym_expression, - STATE(1068), 1, + STATE(1771), 1, sym_selector_expression, - STATE(2407), 1, + STATE(2463), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1041), 2, + ACTIONS(882), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1081), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1053), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(894), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 6, + ACTIONS(900), 6, sym_integer, sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35146,8 +37066,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35162,74 +37083,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [15969] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, + [14279] = 27, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1193), 1, + sym_identifier, + ACTIONS(1195), 1, + anon_sym_not, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1185), 1, - anon_sym_RPAREN, - STATE(1750), 1, + STATE(44), 1, + aux_sym_check_statement_repeat1, + STATE(549), 1, sym_primary_expression, - STATE(1853), 1, + STATE(876), 1, sym_selector_expression, - STATE(2348), 1, + STATE(881), 1, + sym_call, + STATE(1164), 1, sym_expression, - STATE(2472), 1, + STATE(2496), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35237,8 +37157,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35253,72 +37174,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16087] = 25, - ACTIONS(888), 1, - anon_sym_LPAREN, - ACTIONS(890), 1, - anon_sym_LBRACK, - ACTIONS(892), 1, + [14397] = 27, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(902), 1, - anon_sym_DQUOTE, - ACTIONS(906), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1175), 1, + ACTIONS(1052), 1, sym_identifier, - ACTIONS(1177), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(1179), 1, - anon_sym_, - STATE(285), 1, - aux_sym_long_expression_repeat1, - STATE(1495), 1, - sym_expression, - STATE(1575), 1, + ACTIONS(1237), 1, + anon_sym_LPAREN, + ACTIONS(1239), 1, + anon_sym_LBRACK, + ACTIONS(1241), 1, + anon_sym_LBRACE, + ACTIONS(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1247), 1, + anon_sym_DQUOTE, + ACTIONS(1249), 1, + sym_float, + STATE(62), 1, + aux_sym_check_statement_repeat1, + STATE(848), 1, sym_primary_expression, - STATE(1605), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2445), 1, + STATE(1160), 1, + sym_expression, + STATE(2475), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2974), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1830), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(898), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 6, + ACTIONS(1036), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35326,8 +37248,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35342,72 +37265,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16201] = 25, - ACTIONS(888), 1, + [14515] = 27, + ACTIONS(762), 1, + sym_identifier, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(892), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(894), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(902), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(906), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1175), 1, - sym_identifier, - ACTIONS(1177), 1, - anon_sym_not, - ACTIONS(1179), 1, - anon_sym_, - STATE(285), 1, - aux_sym_long_expression_repeat1, - STATE(1495), 1, - sym_expression, - STATE(1575), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1605), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2445), 1, + STATE(2374), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2913), 1, + sym_keyword_argument, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1830), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(898), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35415,8 +37339,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35431,72 +37356,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16315] = 25, - ACTIONS(884), 1, + [14633] = 26, + 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(1215), 1, sym_identifier, - ACTIONS(888), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(890), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(894), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(896), 1, - anon_sym_not, - ACTIONS(902), 1, + ACTIONS(1257), 1, + anon_sym_QMARK_DOT, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1187), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1472), 1, - sym_expression, - STATE(1551), 1, + ACTIONS(1263), 1, + sym_float, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2485), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1830), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(898), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 6, + ACTIONS(429), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35504,8 +37428,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35520,72 +37445,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16429] = 25, - ACTIONS(1043), 1, + [14748] = 26, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1045), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1047), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(1049), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1057), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1061), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1163), 1, + ACTIONS(1265), 1, sym_identifier, - ACTIONS(1165), 1, + ACTIONS(1267), 1, anon_sym_not, - ACTIONS(1167), 1, - anon_sym_, - STATE(286), 1, - aux_sym_long_expression_repeat1, - STATE(1006), 1, + STATE(1641), 1, sym_primary_expression, - STATE(1042), 1, - sym_expression, - STATE(1068), 1, + STATE(1682), 1, + sym_call, + STATE(1921), 1, sym_selector_expression, - STATE(2407), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2533), 1, + sym_expression, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1041), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1053), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35593,8 +37517,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35609,74 +37534,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16543] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, + [14863] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1189), 1, - anon_sym_RPAREN, - STATE(1750), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2348), 1, - sym_expression, - STATE(2472), 1, + STATE(2321), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(2476), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35684,8 +37606,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35700,73 +37623,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16661] = 26, - ACTIONS(507), 1, + [14978] = 26, + 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(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2346), 1, + STATE(2397), 1, sym_expression, - STATE(2411), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(852), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1793), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1408), 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(1798), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35774,8 +37695,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35790,74 +37712,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16777] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, + [15093] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(988), 1, + sym_identifier, + ACTIONS(990), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1191), 1, - anon_sym_RPAREN, - STATE(1750), 1, + STATE(1500), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1565), 1, + sym_call, + STATE(1771), 1, sym_selector_expression, - STATE(2348), 1, + STATE(2324), 1, sym_expression, - STATE(2472), 1, + STATE(2463), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35865,8 +37784,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35881,72 +37801,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [16895] = 25, - ACTIONS(1095), 1, - anon_sym_LPAREN, - ACTIONS(1097), 1, - anon_sym_LBRACK, - ACTIONS(1099), 1, + [15208] = 26, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1101), 1, - anon_sym_LBRACE, - ACTIONS(1109), 1, - anon_sym_DQUOTE, - ACTIONS(1113), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1193), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1197), 1, - anon_sym_, - STATE(303), 1, - aux_sym_long_expression_repeat1, - STATE(320), 1, - sym_expression, - STATE(347), 1, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_QMARK_DOT, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + sym_float, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(554), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2467), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2474), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1093), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(907), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1105), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 6, + ACTIONS(429), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -35954,8 +37873,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -35970,72 +37890,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17009] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(23), 1, + [15323] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(45), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(55), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1023), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1025), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1027), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1035), 1, + ACTIONS(559), 1, + anon_sym_QMARK_DOT, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1199), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1567), 1, - sym_expression, - STATE(1569), 1, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2401), 1, + STATE(2429), 1, + sym_expression, + STATE(2456), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3223), 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(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1031), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 6, + ACTIONS(459), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36043,8 +37962,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36059,74 +37979,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17123] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, + [15438] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1201), 1, - anon_sym_RPAREN, - STATE(1750), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2348), 1, + STATE(2363), 1, sym_expression, - STATE(2472), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36134,8 +38051,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36150,72 +38068,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17241] = 25, - ACTIONS(485), 1, + [15553] = 26, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(43), 1, + anon_sym_QMARK_DOT, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1203), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, sym_identifier, - ACTIONS(1205), 1, + ACTIONS(924), 1, anon_sym_not, - ACTIONS(1207), 1, - anon_sym_, - STATE(301), 1, - aux_sym_long_expression_repeat1, - STATE(1161), 1, + STATE(1490), 1, + sym_call, + STATE(1509), 1, sym_expression, - STATE(1536), 1, + STATE(1539), 1, sym_primary_expression, - STATE(1747), 1, + STATE(1725), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2500), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1083), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(51), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36223,8 +38140,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36239,72 +38157,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17355] = 25, - ACTIONS(485), 1, + [15668] = 26, + 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(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(1257), 1, + anon_sym_QMARK_DOT, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(1203), 1, - sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - ACTIONS(1207), 1, - anon_sym_, - STATE(301), 1, - aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1536), 1, + ACTIONS(1263), 1, + sym_float, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1747), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2473), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1083), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(429), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36312,8 +38229,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36328,74 +38246,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17469] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, + [15783] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1209), 1, - anon_sym_RPAREN, - STATE(1750), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2348), 1, + STATE(2389), 1, sym_expression, - STATE(2472), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36403,8 +38318,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36419,72 +38335,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17587] = 25, - ACTIONS(485), 1, + [15898] = 26, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(489), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1203), 1, + ACTIONS(1167), 1, sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - ACTIONS(1211), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(1153), 1, - sym_expression, - STATE(1536), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1747), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2465), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1083), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36492,8 +38407,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36508,74 +38424,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17701] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, + [16013] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1213), 1, - anon_sym_RPAREN, - STATE(1750), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1265), 1, + sym_identifier, + STATE(1670), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1682), 1, + sym_call, + STATE(1921), 1, sym_selector_expression, - STATE(2348), 1, - sym_expression, - STATE(2472), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(2533), 1, + sym_expression, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36583,8 +38496,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36599,72 +38513,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17819] = 25, - ACTIONS(1095), 1, + [16128] = 26, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1099), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1193), 1, + ACTIONS(1167), 1, sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1215), 1, - anon_sym_, - STATE(195), 1, - aux_sym_long_expression_repeat1, - STATE(313), 1, - sym_expression, - STATE(347), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(554), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2467), 1, + STATE(2402), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3203), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1093), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(907), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1105), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 6, + ACTIONS(786), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36672,8 +38585,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36688,72 +38602,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [17933] = 25, - ACTIONS(485), 1, + [16243] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(487), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(491), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(497), 1, + ACTIONS(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(1203), 1, - sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - ACTIONS(1207), 1, - anon_sym_, - STATE(301), 1, - aux_sym_long_expression_repeat1, - STATE(1161), 1, - sym_expression, - STATE(1536), 1, + ACTIONS(1249), 1, + sym_float, + STATE(370), 1, sym_primary_expression, - STATE(1747), 1, + STATE(711), 1, + sym_expression, + STATE(870), 1, sym_selector_expression, - STATE(2489), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2974), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(483), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1083), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 6, + ACTIONS(1036), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36761,8 +38674,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36777,74 +38691,145 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18047] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, + [16358] = 11, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1287), 1, + anon_sym_as, + ACTIONS(1289), 1, + anon_sym_if, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1295), 1, + anon_sym_or, + ACTIONS(1297), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 24, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 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(1285), 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, + [16443] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1217), 1, - anon_sym_RPAREN, - STATE(1750), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2348), 1, + STATE(2424), 1, sym_expression, - STATE(2472), 1, + STATE(2456), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36852,8 +38837,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36868,72 +38854,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18165] = 25, - ACTIONS(1095), 1, + [16558] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1099), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, - sym_string_start, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1197), 1, - anon_sym_, - STATE(303), 1, - aux_sym_long_expression_repeat1, - STATE(320), 1, - sym_expression, - STATE(347), 1, + ACTIONS(1249), 1, + sym_float, + STATE(370), 1, sym_primary_expression, - STATE(554), 1, + STATE(722), 1, + sym_expression, + STATE(870), 1, sym_selector_expression, - STATE(2467), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2974), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1093), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(907), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1105), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 6, + ACTIONS(1036), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -36941,8 +38926,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -36957,74 +38943,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18279] = 27, - ACTIONS(756), 1, + [16673] = 26, + ACTIONS(1016), 1, sym_identifier, - ACTIONS(758), 1, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1219), 1, - anon_sym_RPAREN, - STATE(1750), 1, + STATE(334), 1, + sym_expression, + STATE(370), 1, sym_primary_expression, - STATE(1853), 1, + STATE(870), 1, sym_selector_expression, - STATE(2348), 1, - sym_expression, - STATE(2472), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37032,8 +39015,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -37048,72 +39032,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18397] = 25, - ACTIONS(1095), 1, + [16788] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1099), 1, - anon_sym_lambda, - ACTIONS(1101), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1109), 1, + ACTIONS(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1113), 1, - sym_string_start, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1197), 1, - anon_sym_, - STATE(303), 1, - aux_sym_long_expression_repeat1, - STATE(320), 1, - sym_expression, - STATE(347), 1, + ACTIONS(1249), 1, + sym_float, + STATE(370), 1, sym_primary_expression, - STATE(554), 1, + STATE(539), 1, + sym_expression, + STATE(870), 1, sym_selector_expression, - STATE(2467), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2974), 1, sym_quant_op, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1093), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(907), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1105), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 6, + ACTIONS(1036), 5, sym_integer, - sym_float, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37121,8 +39104,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -37137,74 +39121,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18511] = 27, - ACTIONS(756), 1, - sym_identifier, - ACTIONS(758), 1, + [16903] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1221), 1, - anon_sym_RPAREN, - STATE(1750), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2348), 1, - sym_expression, - STATE(2472), 1, + STATE(2456), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(2471), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37212,8 +39193,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -37228,81 +39210,24 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18629] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1225), 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(1223), 32, - anon_sym_import, + [17018] = 9, + ACTIONS(1018), 1, 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(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, anon_sym_and, + ACTIONS(1295), 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, - [18700] = 4, + ACTIONS(1297), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(336), 2, + STATE(819), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1225), 26, + ACTIONS(1301), 24, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -37311,8 +39236,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, anon_sym_PERCENT, @@ -37329,9 +39252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1223), 32, + ACTIONS(1299), 29, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -37350,8 +39272,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, anon_sym_GT, @@ -37362,72 +39282,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [18771] = 26, - ACTIONS(1093), 1, + [17099] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1193), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - STATE(67), 1, - aux_sym_check_statement_repeat1, - STATE(347), 1, + STATE(1376), 1, sym_primary_expression, - STATE(554), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(1149), 1, - sym_expression, - STATE(2467), 1, + STATE(2456), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2488), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -37435,8 +39354,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -37451,2079 +39371,2562 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [18886] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1225), 26, + [17214] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1038), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1237), 1, anon_sym_LPAREN, + ACTIONS(1239), 1, anon_sym_LBRACK, + ACTIONS(1241), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1247), 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(1249), 1, sym_float, - ACTIONS(1223), 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, - [18957] = 4, - STATE(344), 1, - aux_sym_union_type_repeat1, + STATE(370), 1, + sym_primary_expression, + STATE(602), 1, + sym_expression, + STATE(870), 1, + sym_selector_expression, + STATE(871), 1, + sym_call, + STATE(2529), 1, + sym_dotted_name, + STATE(2974), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1241), 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, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1245), 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(1243), 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, + 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(902), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1036), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19028] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(909), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(928), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1225), 26, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [17329] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(2491), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 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(1223), 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, + 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(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19099] = 4, - ACTIONS(1249), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1245), 25, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [17444] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1038), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1237), 1, anon_sym_LPAREN, + ACTIONS(1239), 1, anon_sym_LBRACK, + ACTIONS(1241), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1247), 1, 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, + ACTIONS(1249), 1, sym_float, - ACTIONS(1247), 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, + STATE(370), 1, + sym_primary_expression, + STATE(541), 1, + sym_expression, + STATE(870), 1, + sym_selector_expression, + STATE(871), 1, + sym_call, + STATE(2529), 1, + sym_dotted_name, + STATE(2974), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1245), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(902), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1036), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19170] = 6, - ACTIONS(1255), 1, - anon_sym_and, - ACTIONS(1257), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(909), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(928), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1251), 25, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [17559] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1038), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1237), 1, anon_sym_LPAREN, + ACTIONS(1239), 1, anon_sym_LBRACK, + ACTIONS(1241), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, + ACTIONS(1247), 1, anon_sym_DQUOTE, + ACTIONS(1249), 1, + sym_float, + STATE(340), 1, + sym_expression, + STATE(370), 1, + sym_primary_expression, + STATE(870), 1, + sym_selector_expression, + STATE(871), 1, + sym_call, + STATE(2529), 1, + sym_dotted_name, + STATE(2974), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1245), 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(1253), 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, + 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_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(902), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1036), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19245] = 4, - STATE(344), 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(909), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(928), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [17674] = 26, + 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, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + sym_identifier, + ACTIONS(924), 1, + anon_sym_not, + STATE(1490), 1, + sym_call, + STATE(1539), 1, + sym_primary_expression, + STATE(1540), 1, + sym_expression, + STATE(1725), 1, + sym_selector_expression, + STATE(2500), 1, + sym_dotted_name, + STATE(3247), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 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(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, + 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(1874), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19316] = 4, - ACTIONS(1267), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1263), 25, + STATE(1916), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1924), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [17789] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, 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, + ACTIONS(565), 1, sym_float, - ACTIONS(1265), 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, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(2494), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19387] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1269), 26, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [17904] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2427), 1, + sym_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 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(1271), 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, + 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(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19458] = 5, - ACTIONS(1277), 1, - anon_sym_PIPE, - STATE(321), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1273), 25, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [18019] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, 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, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2433), 1, + sym_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_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(1275), 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, + 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(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19531] = 22, - ACTIONS(1286), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [18134] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1298), 1, - anon_sym_not, - ACTIONS(1304), 1, - anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_AMP, - ACTIONS(1308), 1, - anon_sym_CARET, - ACTIONS(1314), 1, - anon_sym_is, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(2464), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 2, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1302), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1290), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1312), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1284), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1280), 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(1282), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, + 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(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19638] = 22, - ACTIONS(1286), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [18249] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, - anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1298), 1, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(1304), 1, - anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_AMP, - ACTIONS(1308), 1, - anon_sym_CARET, - ACTIONS(1314), 1, - anon_sym_is, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(49), 1, + anon_sym_DQUOTE, + ACTIONS(53), 1, + sym_float, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, + sym_primary_expression, + STATE(1704), 1, + sym_selector_expression, + STATE(2441), 1, + sym_dotted_name, + STATE(2446), 1, + sym_expression, + STATE(3247), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1302), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1290), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1312), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1284), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1318), 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(1320), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, + 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(1893), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19745] = 4, - STATE(344), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1273), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(1916), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1924), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [18364] = 26, + ACTIONS(9), 1, + sym_identifier, + 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(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(1490), 1, + sym_call, + STATE(1564), 1, + sym_primary_expression, + STATE(1704), 1, + sym_selector_expression, + STATE(2317), 1, + sym_expression, + STATE(2441), 1, + sym_dotted_name, + STATE(3247), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 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(1275), 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, + 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(1893), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19816] = 13, - ACTIONS(1286), 1, + STATE(1916), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1924), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [18479] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_DOT, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, - anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + 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(1490), 1, + sym_call, + STATE(1544), 1, + sym_expression, + STATE(1564), 1, + sym_primary_expression, + STATE(1704), 1, + sym_selector_expression, + STATE(2441), 1, + sym_dotted_name, + STATE(3247), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1302), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 17, - sym_string_start, - ts_builtin_sym_end, - 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(1324), 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, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1893), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19905] = 4, - ACTIONS(1326), 1, - anon_sym_DASH_GT, + STATE(1916), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1924), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [18594] = 26, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, + anon_sym_LBRACE, + ACTIONS(1309), 1, + anon_sym_QMARK_DOT, + ACTIONS(1313), 1, + anon_sym_DQUOTE, + ACTIONS(1315), 1, + sym_float, + STATE(1033), 1, + sym_expression, + STATE(1054), 1, + sym_primary_expression, + STATE(1059), 1, + sym_selector_expression, + STATE(1064), 1, + sym_call, + STATE(2489), 1, + sym_dotted_name, + STATE(2994), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 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, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, 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_DASH, anon_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), 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, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1092), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1092), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [19976] = 21, - ACTIONS(1330), 1, + STATE(1118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1113), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [18709] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(1275), 1, + anon_sym_LBRACE, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(1342), 1, - anon_sym_not, - ACTIONS(1348), 1, - anon_sym_PIPE, - ACTIONS(1350), 1, - anon_sym_AMP, - ACTIONS(1352), 1, - anon_sym_CARET, - ACTIONS(1358), 1, - anon_sym_is, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(1097), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1281), 1, + anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + ACTIONS(1317), 1, + sym_identifier, + STATE(1516), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1344), 2, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1346), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1334), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1356), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1284), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + 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(1887), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20081] = 14, - ACTIONS(1286), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [18824] = 26, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, + anon_sym_LBRACE, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, + anon_sym_DQUOTE, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1167), 1, + sym_identifier, + STATE(1682), 1, + sym_call, + STATE(1685), 1, + sym_primary_expression, + STATE(1905), 1, + sym_selector_expression, + STATE(2376), 1, + sym_expression, + STATE(2501), 1, + sym_dotted_name, + STATE(3203), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1302), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - 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(1324), 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, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(786), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20172] = 15, - ACTIONS(1286), 1, + STATE(2002), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2005), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [18939] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1308), 1, - anon_sym_CARET, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(2478), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 2, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1302), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 14, - sym_string_start, - ts_builtin_sym_end, - 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(1324), 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, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20265] = 16, - ACTIONS(1286), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [19054] = 26, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(1307), 1, + anon_sym_LBRACE, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1306), 1, - anon_sym_AMP, - ACTIONS(1308), 1, - anon_sym_CARET, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1313), 1, + anon_sym_DQUOTE, + ACTIONS(1315), 1, + sym_float, + STATE(1051), 1, + sym_expression, + STATE(1054), 1, + sym_primary_expression, + STATE(1059), 1, + sym_selector_expression, + STATE(1064), 1, + sym_call, + STATE(2489), 1, + sym_dotted_name, + STATE(2994), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 2, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1302), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 13, - sym_string_start, - ts_builtin_sym_end, - 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, - sym_float, - ACTIONS(1324), 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, + 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(1092), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1092), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1113), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [19169] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, + anon_sym_QMARK_DOT, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(2481), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20360] = 12, - ACTIONS(1286), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [19284] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(2520), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1302), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 19, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, 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(1324), 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, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20447] = 10, - ACTIONS(1286), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [19399] = 26, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(1307), 1, + anon_sym_LBRACE, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1313), 1, + anon_sym_DQUOTE, + ACTIONS(1315), 1, + sym_float, + STATE(1035), 1, + sym_expression, + STATE(1054), 1, + sym_primary_expression, + STATE(1059), 1, + sym_selector_expression, + STATE(1064), 1, + sym_call, + STATE(2489), 1, + sym_dotted_name, + STATE(2994), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1322), 21, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 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, - sym_float, - ACTIONS(1324), 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, + 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(1092), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1092), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20530] = 10, - ACTIONS(1286), 1, + STATE(1118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1113), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [19514] = 26, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(1307), 1, + anon_sym_LBRACE, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1313), 1, + anon_sym_DQUOTE, + ACTIONS(1315), 1, + sym_float, + STATE(1053), 1, + sym_expression, + STATE(1054), 1, + sym_primary_expression, + STATE(1059), 1, + sym_selector_expression, + STATE(1064), 1, + sym_call, + STATE(2489), 1, + sym_dotted_name, + STATE(2994), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1322), 21, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 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, - sym_float, - ACTIONS(1324), 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, + 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(1092), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1092), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20613] = 6, - ACTIONS(1366), 1, + STATE(1118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1113), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [19629] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(1369), 1, + 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(1490), 1, + sym_call, + STATE(1564), 1, + sym_primary_expression, + STATE(1704), 1, + sym_selector_expression, + STATE(2441), 1, + sym_dotted_name, + STATE(2442), 1, + sym_expression, + STATE(3247), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(334), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1362), 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, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 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(1364), 31, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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(1893), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20688] = 10, - ACTIONS(1330), 1, + STATE(1916), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1924), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [19744] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2440), 1, + sym_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1372), 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, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20771] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(354), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1378), 26, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [19859] = 26, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, + ACTIONS(1253), 1, anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1261), 1, anon_sym_DQUOTE, + ACTIONS(1263), 1, + sym_float, + STATE(1200), 1, + sym_call, + STATE(1202), 1, + sym_primary_expression, + STATE(1287), 1, + sym_selector_expression, + STATE(2421), 1, + sym_dotted_name, + STATE(2517), 1, + sym_expression, + STATE(3170), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1259), 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(1376), 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, + 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(1408), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(429), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20842] = 6, - ACTIONS(1384), 1, + STATE(1396), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1395), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [19974] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(1387), 1, - anon_sym_QMARK_DOT, - STATE(337), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1380), 25, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(1277), 1, + anon_sym_QMARK_DOT, + ACTIONS(1281), 1, anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + ACTIONS(1317), 1, + sym_identifier, + STATE(1503), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1382), 32, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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(1887), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20917] = 4, - STATE(372), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1392), 26, - sym__dedent, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [20089] = 26, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, + ACTIONS(1305), 1, anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_DQUOTE, + ACTIONS(1315), 1, + sym_float, + STATE(1044), 1, + sym_expression, + STATE(1054), 1, + sym_primary_expression, + STATE(1059), 1, + sym_selector_expression, + STATE(1064), 1, + sym_call, + STATE(2489), 1, + sym_dotted_name, + STATE(2994), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 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(1390), 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, + 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(1092), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1092), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [20988] = 5, - ACTIONS(1398), 1, - anon_sym_EQ, - STATE(344), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1394), 26, + STATE(1118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1113), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [20204] = 26, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, + ACTIONS(1305), 1, anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1313), 1, anon_sym_DQUOTE, + ACTIONS(1315), 1, + sym_float, + STATE(1048), 1, + sym_expression, + STATE(1054), 1, + sym_primary_expression, + STATE(1059), 1, + sym_selector_expression, + STATE(1064), 1, + sym_call, + STATE(2489), 1, + sym_dotted_name, + STATE(2994), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 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(1396), 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, + 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(1092), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1092), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21061] = 5, - ACTIONS(1400), 1, - anon_sym_EQ, - STATE(338), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1394), 26, - sym__dedent, + STATE(1118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1113), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [20319] = 26, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, + ACTIONS(1305), 1, anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1313), 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(1315), 1, sym_float, - ACTIONS(1396), 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, + STATE(1024), 1, + sym_expression, + STATE(1054), 1, + sym_primary_expression, + STATE(1059), 1, + sym_selector_expression, + STATE(1064), 1, + sym_call, + STATE(2489), 1, + sym_dotted_name, + STATE(2994), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1115), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + 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(1092), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21134] = 22, - ACTIONS(1286), 1, + STATE(1118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1113), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [20434] = 21, + ACTIONS(1323), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(1325), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, + ACTIONS(1331), 1, anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(1333), 1, anon_sym_QMARK_DOT, - ACTIONS(1298), 1, + ACTIONS(1335), 1, anon_sym_not, - ACTIONS(1304), 1, + ACTIONS(1341), 1, anon_sym_PIPE, - ACTIONS(1306), 1, + ACTIONS(1343), 1, anon_sym_AMP, - ACTIONS(1308), 1, + ACTIONS(1345), 1, anon_sym_CARET, - ACTIONS(1314), 1, + ACTIONS(1351), 1, anon_sym_is, - ACTIONS(1316), 1, + ACTIONS(1353), 1, anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, + STATE(900), 1, aux_sym_comparison_operator_repeat1, + STATE(926), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, + ACTIONS(1329), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1300), 2, + ACTIONS(1337), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1302), 2, + ACTIONS(1339), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1310), 2, + ACTIONS(1347), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1290), 3, + ACTIONS(1327), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 4, + ACTIONS(1349), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1402), 8, + ACTIONS(1321), 8, + sym__dedent, 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(1404), 20, + ACTIONS(1319), 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, @@ -39536,1363 +41939,1824 @@ static const uint16_t ts_small_parse_table[] = { 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, - [21241] = 6, - ACTIONS(1406), 1, + [20539] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1409), 1, - anon_sym_QMARK_DOT, - STATE(342), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1380), 25, - sym__dedent, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, + ACTIONS(1253), 1, anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(1257), 1, + anon_sym_QMARK_DOT, + ACTIONS(1261), 1, anon_sym_DQUOTE, + ACTIONS(1263), 1, + sym_float, + STATE(1200), 1, + sym_call, + STATE(1202), 1, + sym_primary_expression, + STATE(1287), 1, + sym_selector_expression, + STATE(2412), 1, + sym_expression, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1259), 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(1382), 32, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, - anon_sym_lambda, - anon_sym_in, + 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(1408), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(429), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21316] = 4, - STATE(338), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1414), 26, - sym__dedent, + STATE(1396), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1395), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [20654] = 26, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, + ACTIONS(1253), 1, anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1261), 1, anon_sym_DQUOTE, + ACTIONS(1263), 1, + sym_float, + STATE(1200), 1, + sym_call, + STATE(1202), 1, + sym_primary_expression, + STATE(1287), 1, + sym_selector_expression, + STATE(2421), 1, + sym_dotted_name, + STATE(2516), 1, + sym_expression, + STATE(3170), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1259), 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(1412), 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, + 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(1408), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(429), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21387] = 4, - STATE(321), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1392), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(1396), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1395), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [20769] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + 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(1430), 1, + sym_primary_expression, + STATE(1431), 1, + sym_call, + STATE(1559), 1, + sym_selector_expression, + STATE(2335), 1, + sym_expression, + STATE(2514), 1, + sym_dotted_name, + STATE(3173), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 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(1390), 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, + 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(1748), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(535), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21458] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(334), 2, + STATE(1735), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1733), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1378), 26, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [20884] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1281), 1, anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + ACTIONS(1317), 1, + sym_identifier, + STATE(1521), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1376), 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, + 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, + STATE(1887), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [20999] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(908), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + ACTIONS(1271), 1, + anon_sym_LPAREN, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, + anon_sym_LBRACE, + ACTIONS(1277), 1, + anon_sym_QMARK_DOT, + ACTIONS(1281), 1, + anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + ACTIONS(1317), 1, + sym_identifier, + STATE(1519), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1887), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21529] = 10, - ACTIONS(1286), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [21114] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - STATE(915), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1175), 1, + anon_sym_not, + STATE(1620), 1, + sym_primary_expression, + STATE(1669), 1, + sym_selector_expression, + STATE(1765), 1, + sym_call, + STATE(2361), 1, + sym_expression, + STATE(2480), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 21, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 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, - sym_float, - ACTIONS(1372), 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, + 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(1928), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21612] = 21, - ACTIONS(1286), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [21229] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1304), 1, - anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_AMP, - ACTIONS(1308), 1, - anon_sym_CARET, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1418), 1, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_is, - STATE(915), 1, - sym_argument_list, - STATE(1078), 1, - aux_sym_comparison_operator_repeat1, + STATE(1167), 1, + sym_expression, + STATE(1592), 1, + sym_primary_expression, + STATE(1649), 1, + sym_selector_expression, + STATE(1765), 1, + sym_call, + STATE(2492), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 2, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1302), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1416), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1420), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 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(1284), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + 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(1929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21717] = 5, - ACTIONS(1257), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1424), 25, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [21344] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1173), 1, + sym_expression, + STATE(1592), 1, + sym_primary_expression, + STATE(1649), 1, + sym_selector_expression, + STATE(1765), 1, + sym_call, + STATE(2492), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 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(1426), 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, + 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(1929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21790] = 4, - STATE(338), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1273), 26, - sym__dedent, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [21459] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1489), 1, + sym_expression, + STATE(1592), 1, + sym_primary_expression, + STATE(1649), 1, + sym_selector_expression, + STATE(1765), 1, + sym_call, + STATE(2492), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 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(1275), 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, + 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(1929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21861] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1269), 26, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [21574] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1580), 1, + sym_expression, + STATE(1592), 1, + sym_primary_expression, + STATE(1649), 1, + sym_selector_expression, + STATE(1765), 1, + sym_call, + STATE(2492), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 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(1271), 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, + 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(1929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [21932] = 4, - STATE(338), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1259), 26, - sym__dedent, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [21689] = 26, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, + ACTIONS(1253), 1, anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1261), 1, anon_sym_DQUOTE, + ACTIONS(1263), 1, + sym_float, + STATE(1200), 1, + sym_call, + STATE(1202), 1, + sym_primary_expression, + STATE(1287), 1, + sym_selector_expression, + STATE(2411), 1, + sym_expression, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1259), 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(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, + 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(1408), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(429), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22003] = 4, - STATE(344), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1414), 26, + STATE(1396), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1395), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [21804] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1506), 1, + sym_expression, + STATE(1592), 1, + sym_primary_expression, + STATE(1649), 1, + sym_selector_expression, + STATE(1765), 1, + sym_call, + STATE(2492), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 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(1412), 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, + 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(1929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22074] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1428), 26, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [21919] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1581), 1, + sym_expression, + STATE(1592), 1, + sym_primary_expression, + STATE(1649), 1, + sym_selector_expression, + STATE(1765), 1, + sym_call, + STATE(2492), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 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(1430), 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, + 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(1929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22145] = 6, - ACTIONS(1432), 1, - anon_sym_DOT, - ACTIONS(1435), 1, - anon_sym_QMARK_DOT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(354), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1362), 25, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [22034] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(559), 1, + anon_sym_QMARK_DOT, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1486), 1, + sym_expression, + STATE(1592), 1, + sym_primary_expression, + STATE(1649), 1, + sym_selector_expression, + STATE(1765), 1, + sym_call, + STATE(2492), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 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(1364), 31, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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(1929), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22220] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1428), 26, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [22149] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1281), 1, anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + ACTIONS(1317), 1, + sym_identifier, + ACTIONS(1357), 1, + anon_sym_not, + STATE(1531), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1430), 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, + 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(1887), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22291] = 4, - STATE(338), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1241), 26, - sym__dedent, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [22264] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1281), 1, anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + ACTIONS(1317), 1, + sym_identifier, + STATE(1531), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1243), 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, + 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(1887), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22362] = 4, - ACTIONS(1438), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1245), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [22379] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, 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, + ACTIONS(537), 1, sym_float, - ACTIONS(1247), 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, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, + sym_primary_expression, + STATE(1431), 1, + sym_call, + STATE(1559), 1, + sym_selector_expression, + STATE(2413), 1, + sym_expression, + STATE(2514), 1, + sym_dotted_name, + STATE(3173), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1748), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(535), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22433] = 22, - ACTIONS(1298), 1, + STATE(1735), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1733), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [22494] = 26, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1314), 1, - anon_sym_is, - ACTIONS(1330), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1348), 1, - anon_sym_PIPE, - ACTIONS(1350), 1, - anon_sym_AMP, - ACTIONS(1352), 1, - anon_sym_CARET, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + sym_float, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, + sym_primary_expression, + STATE(1287), 1, + sym_selector_expression, + STATE(2308), 1, + sym_dotted_name, + STATE(2509), 1, + sym_expression, + STATE(3170), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1344), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1346), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1290), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1312), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1284), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1402), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1404), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, + 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(1408), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(429), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22540] = 5, - ACTIONS(1257), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(1396), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1395), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1440), 25, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [22609] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(892), 1, + anon_sym_not, + ACTIONS(902), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, + ACTIONS(1281), 1, anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + STATE(1549), 1, + sym_expression, + STATE(1562), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, + sym_dotted_name, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1838), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1442), 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, + 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(1860), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22613] = 10, - ACTIONS(1330), 1, + STATE(1850), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [22724] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1233), 1, + anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + STATE(403), 1, + sym_primary_expression, + STATE(742), 1, + sym_expression, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, + sym_dotted_name, + STATE(3059), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1322), 21, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1231), 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, - sym_float, - ACTIONS(1324), 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, + 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, + STATE(952), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1159), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(977), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(979), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [22839] = 11, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1229), 1, + anon_sym_QMARK_DOT, + ACTIONS(1359), 1, + anon_sym_as, + ACTIONS(1361), 1, + anon_sym_if, + ACTIONS(1363), 1, anon_sym_and, + ACTIONS(1365), 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, - [22696] = 10, - ACTIONS(1330), 1, - anon_sym_LPAREN, - ACTIONS(1332), 1, - anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, - anon_sym_QMARK_DOT, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1367), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1322), 21, - sym__dedent, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -40907,13 +43771,11 @@ 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(1324), 32, + ACTIONS(1285), 27, anon_sym_import, - anon_sym_DOT, - anon_sym_as, anon_sym_assert, - anon_sym_if, anon_sym_else, anon_sym_lambda, anon_sym_in, @@ -40929,8 +43791,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, anon_sym_GT, @@ -40941,546 +43801,566 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [22779] = 12, - ACTIONS(1330), 1, + [22924] = 26, + 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(1251), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + sym_float, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, + sym_primary_expression, + STATE(1287), 1, + sym_selector_expression, + STATE(2327), 1, + sym_dotted_name, + STATE(2477), 1, + sym_expression, + STATE(3170), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1346), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 19, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1259), 3, 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(1324), 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, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1408), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(429), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22866] = 16, - ACTIONS(1330), 1, + STATE(1396), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1395), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23039] = 26, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, + anon_sym_LBRACE, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1350), 1, - anon_sym_AMP, - ACTIONS(1352), 1, - anon_sym_CARET, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, + anon_sym_DQUOTE, + ACTIONS(788), 1, + sym_float, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1167), 1, + sym_identifier, + STATE(1682), 1, + sym_call, + STATE(1685), 1, + sym_primary_expression, + STATE(1905), 1, + sym_selector_expression, + STATE(2501), 1, + sym_dotted_name, + STATE(2513), 1, + sym_expression, + STATE(3203), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1344), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1346), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 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, - sym_float, - ACTIONS(1324), 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, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1991), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(786), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [22961] = 15, - ACTIONS(1330), 1, + STATE(2002), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(2005), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23154] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1352), 1, - anon_sym_CARET, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1233), 1, + anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + STATE(403), 1, + sym_primary_expression, + STATE(732), 1, + sym_expression, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, + sym_dotted_name, + STATE(3059), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1344), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1346), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 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(1324), 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, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(952), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1159), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [23054] = 5, - ACTIONS(1257), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(977), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(979), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1444), 25, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23269] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(1161), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1223), 1, anon_sym_LPAREN, + ACTIONS(1225), 1, anon_sym_LBRACK, + ACTIONS(1227), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, + ACTIONS(1233), 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(1235), 1, sym_float, - ACTIONS(1446), 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, - [23127] = 14, - ACTIONS(1330), 1, - anon_sym_LPAREN, - ACTIONS(1332), 1, - anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, - anon_sym_QMARK_DOT, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + STATE(391), 1, + sym_expression, + STATE(403), 1, + sym_primary_expression, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, + sym_dotted_name, + STATE(3059), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1344), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1346), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - sym_float, - ACTIONS(1324), 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, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(952), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1159), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [23218] = 5, - ACTIONS(1448), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, + STATE(977), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(979), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1424), 25, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23384] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(1161), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1223), 1, anon_sym_LPAREN, + ACTIONS(1225), 1, anon_sym_LBRACK, + ACTIONS(1227), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, + ACTIONS(1233), 1, anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + STATE(403), 1, + sym_primary_expression, + STATE(585), 1, + sym_expression, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, + sym_dotted_name, + STATE(3059), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1231), 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(1426), 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, + 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(952), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1159), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [23291] = 13, - ACTIONS(1330), 1, + STATE(977), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(979), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23499] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, + sym_selector_expression, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2550), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1344), 2, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1346), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 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(1324), 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, + 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1280), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [23380] = 5, - ACTIONS(1448), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23614] = 9, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1229), 1, + anon_sym_QMARK_DOT, + ACTIONS(1363), 1, + anon_sym_and, + ACTIONS(1365), 1, + anon_sym_or, + ACTIONS(1367), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(336), 2, + STATE(606), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1440), 25, - sym__dedent, + ACTIONS(1301), 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_QMARK_DOT, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -41497,9 +44377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1442), 32, + ACTIONS(1299), 29, anon_sym_import, - anon_sym_DOT, anon_sym_as, anon_sym_assert, anon_sym_if, @@ -41518,8 +44397,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, anon_sym_GT, @@ -41530,1131 +44407,1134 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [23453] = 5, - ACTIONS(1448), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 25, - sym__dedent, + [23695] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(1161), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1223), 1, anon_sym_LPAREN, + ACTIONS(1225), 1, anon_sym_LBRACK, + ACTIONS(1227), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, + ACTIONS(1233), 1, anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + STATE(403), 1, + sym_primary_expression, + STATE(610), 1, + sym_expression, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, + sym_dotted_name, + STATE(3059), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1231), 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(1446), 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, + 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(952), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1159), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [23526] = 4, - ACTIONS(1450), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1263), 25, - sym__dedent, + STATE(977), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(979), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23810] = 26, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1251), 1, anon_sym_LPAREN, + ACTIONS(1253), 1, anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1261), 1, 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, + ACTIONS(1263), 1, sym_float, - ACTIONS(1265), 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, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, + sym_primary_expression, + STATE(1287), 1, + sym_selector_expression, + STATE(2345), 1, + sym_dotted_name, + STATE(2425), 1, + sym_expression, + STATE(3170), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1259), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + 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_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1408), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(429), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [23597] = 5, - ACTIONS(1452), 1, - anon_sym_PIPE, - STATE(372), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1273), 25, - sym__dedent, + STATE(1396), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1395), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [23925] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(1161), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1223), 1, anon_sym_LPAREN, + ACTIONS(1225), 1, anon_sym_LBRACK, + ACTIONS(1227), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1233), 1, anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + STATE(403), 1, + sym_primary_expression, + STATE(588), 1, + sym_expression, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, + sym_dotted_name, + STATE(3059), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1231), 3, + anon_sym_PLUS, 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(1275), 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, + 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(952), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1159), 5, sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(977), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(979), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24040] = 26, + ACTIONS(1139), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [23670] = 22, - ACTIONS(1298), 1, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(1314), 1, - anon_sym_is, - ACTIONS(1330), 1, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1348), 1, - anon_sym_PIPE, - ACTIONS(1350), 1, - anon_sym_AMP, - ACTIONS(1352), 1, - anon_sym_CARET, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1233), 1, + anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + STATE(398), 1, + sym_expression, + STATE(403), 1, + sym_primary_expression, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, + sym_dotted_name, + STATE(3059), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1344), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1346), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1290), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1312), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1284), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1318), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1320), 20, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, + 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(952), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1159), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [23777] = 22, - ACTIONS(1298), 1, - anon_sym_not, - ACTIONS(1314), 1, - anon_sym_is, - ACTIONS(1330), 1, + STATE(977), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(979), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24155] = 21, + ACTIONS(1371), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1373), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, + ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(1381), 1, anon_sym_QMARK_DOT, - ACTIONS(1348), 1, + ACTIONS(1383), 1, + anon_sym_not, + ACTIONS(1389), 1, anon_sym_PIPE, - ACTIONS(1350), 1, + ACTIONS(1391), 1, anon_sym_AMP, - ACTIONS(1352), 1, + ACTIONS(1393), 1, anon_sym_CARET, - ACTIONS(1360), 1, + ACTIONS(1399), 1, + anon_sym_is, + ACTIONS(1401), 1, anon_sym_QMARK_LBRACK, - STATE(914), 1, - sym_argument_list, - STATE(2215), 1, + STATE(894), 1, aux_sym_comparison_operator_repeat1, + STATE(937), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, + ACTIONS(1377), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1344), 2, + ACTIONS(1385), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1346), 2, + ACTIONS(1387), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1354), 2, + ACTIONS(1395), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1290), 3, + ACTIONS(1375), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 4, + ACTIONS(1397), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1280), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1282), 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, - [23884] = 4, - ACTIONS(1455), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1259), 25, - sym__dedent, + ACTIONS(1321), 8, 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(1261), 34, + ACTIONS(1319), 25, 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, - [23955] = 6, - ACTIONS(1448), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1251), 25, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [24260] = 26, + ACTIONS(9), 1, + sym_identifier, + 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, + ACTIONS(45), 1, + anon_sym_not, + 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(1253), 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, - [24030] = 4, - STATE(379), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, + sym_primary_expression, + STATE(1566), 1, + sym_expression, + STATE(1704), 1, + sym_selector_expression, + STATE(2441), 1, + sym_dotted_name, + STATE(3247), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1459), 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, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(47), 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(1461), 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, + 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(1893), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(51), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24101] = 8, - ACTIONS(1255), 1, - anon_sym_and, - ACTIONS(1257), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(1916), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1924), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1463), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1440), 12, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24375] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(988), 1, + sym_identifier, + ACTIONS(990), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, + ACTIONS(1281), 1, anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(1283), 1, sym_float, - ACTIONS(1465), 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(1442), 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, - [24180] = 4, - STATE(337), 1, - aux_sym_dotted_name_repeat1, + STATE(1500), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1771), 1, + sym_selector_expression, + STATE(2337), 1, + sym_expression, + STATE(2463), 1, + sym_dotted_name, + STATE(3123), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 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, + STATE(1838), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1469), 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, + 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(1891), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24251] = 4, - STATE(381), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1459), 26, - sym__dedent, + STATE(1850), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24490] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, + sym_selector_expression, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2536), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 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(1461), 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, + 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(1280), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24322] = 4, - STATE(342), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1467), 26, - sym__dedent, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24605] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(932), 1, + sym_identifier, + ACTIONS(934), 1, + anon_sym_not, + STATE(1387), 1, + sym_call, + STATE(1980), 1, + sym_expression, + STATE(2043), 1, + sym_primary_expression, + STATE(2044), 1, + sym_selector_expression, + STATE(2470), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 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(1469), 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, + 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(2052), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24393] = 8, - ACTIONS(1255), 1, - anon_sym_and, - ACTIONS(1257), 1, - anon_sym_PLUS, - ACTIONS(1440), 1, - anon_sym_QMARK_DOT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1442), 4, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24720] = 26, + ACTIONS(435), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1465), 24, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, + anon_sym_QMARK_DOT, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2456), 1, + sym_dotted_name, + STATE(2495), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 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(1463), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1589), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24472] = 6, - ACTIONS(1255), 1, - anon_sym_and, - ACTIONS(1257), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1440), 25, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24835] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, + sym_selector_expression, + STATE(1387), 1, + sym_call, + STATE(2007), 1, + sym_primary_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2566), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 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(1442), 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, + 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_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1280), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24547] = 8, - ACTIONS(1448), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1463), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1440), 12, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [24950] = 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, - anon_sym_AT, + 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(1430), 1, + sym_primary_expression, + STATE(1431), 1, + sym_call, + STATE(1559), 1, + sym_selector_expression, + STATE(2498), 1, + sym_expression, + STATE(2514), 1, + sym_dotted_name, + STATE(3173), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(529), 3, + anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - sym_float, - ACTIONS(1465), 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(1442), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + 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_not, - anon_sym_or, + STATE(1748), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(535), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24626] = 26, - ACTIONS(756), 1, + STATE(1735), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1733), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25065] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(758), 1, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(45), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(55), 1, sym_string_start, - STATE(1750), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2348), 1, + STATE(2315), 1, sym_expression, - STATE(2472), 1, + STATE(2441), 1, sym_dotted_name, - STATE(2900), 1, - sym_keyword_argument, - STATE(3189), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42662,8 +45542,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -42678,212 +45559,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [24741] = 8, - ACTIONS(1440), 1, - anon_sym_QMARK_DOT, - ACTIONS(1448), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, + [25180] = 26, + ACTIONS(401), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_or, - ACTIONS(1465), 24, - sym__dedent, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1251), 1, anon_sym_LPAREN, + ACTIONS(1253), 1, anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1257), 1, + anon_sym_QMARK_DOT, + ACTIONS(1261), 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(1263), 1, sym_float, - ACTIONS(1463), 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, + ACTIONS(1269), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [24820] = 6, - ACTIONS(1448), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, + STATE(1200), 1, + sym_call, + STATE(1202), 1, + sym_primary_expression, + STATE(1287), 1, + sym_selector_expression, + STATE(2309), 1, + sym_dotted_name, + STATE(2506), 1, + sym_expression, + STATE(3170), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 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, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1259), 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(1442), 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, + 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_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1408), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(429), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [24895] = 26, - ACTIONS(951), 1, + STATE(1396), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1395), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25295] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(957), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(971), 1, - sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, + ACTIONS(892), 1, anon_sym_not, - ACTIONS(1471), 1, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(1283), 1, sym_float, - STATE(40), 1, - aux_sym_check_statement_repeat1, - STATE(327), 1, + STATE(1562), 1, sym_primary_expression, - STATE(640), 1, - sym_selector_expression, - STATE(1152), 1, + STATE(1565), 1, + sym_call, + STATE(1571), 1, sym_expression, - STATE(2452), 1, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(900), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -42891,8 +45720,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -42907,530 +45737,516 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25010] = 21, - ACTIONS(1286), 1, + [25410] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1288), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1294), 1, - anon_sym_STAR_STAR, - ACTIONS(1296), 1, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1304), 1, - anon_sym_PIPE, - ACTIONS(1306), 1, - anon_sym_AMP, - ACTIONS(1308), 1, - anon_sym_CARET, - ACTIONS(1316), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(1418), 1, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(932), 1, + sym_identifier, + ACTIONS(934), 1, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_is, - STATE(868), 1, - aux_sym_comparison_operator_repeat1, - STATE(915), 1, - sym_argument_list, + STATE(1387), 1, + sym_call, + STATE(2024), 1, + sym_expression, + STATE(2043), 1, + sym_primary_expression, + STATE(2044), 1, + sym_selector_expression, + STATE(2470), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1292), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 2, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1302), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1416), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1420), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 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(1284), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + 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(2052), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [25115] = 9, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1233), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, - anon_sym_and, - ACTIONS(1257), 1, - anon_sym_PLUS, - ACTIONS(1489), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1485), 24, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25525] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1277), 1, + anon_sym_QMARK_DOT, + ACTIONS(1281), 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(1283), 1, sym_float, - ACTIONS(1487), 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, + ACTIONS(1317), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [25196] = 11, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1233), 1, - anon_sym_QMARK_DOT, - ACTIONS(1255), 1, - anon_sym_and, - ACTIONS(1257), 1, - anon_sym_PLUS, - ACTIONS(1489), 1, - anon_sym_or, - ACTIONS(1495), 1, - anon_sym_as, - ACTIONS(1497), 1, - anon_sym_if, + STATE(1523), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(345), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1491), 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, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1493), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1887), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [25281] = 21, - ACTIONS(1330), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25640] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(892), 1, + anon_sym_not, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(1332), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(1338), 1, - anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(1275), 1, + anon_sym_LBRACE, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(1342), 1, - anon_sym_not, - ACTIONS(1348), 1, - anon_sym_PIPE, - ACTIONS(1350), 1, - anon_sym_AMP, - ACTIONS(1352), 1, - anon_sym_CARET, - ACTIONS(1358), 1, - anon_sym_is, - ACTIONS(1360), 1, - anon_sym_QMARK_LBRACK, - STATE(864), 1, - aux_sym_comparison_operator_repeat1, - STATE(914), 1, - sym_argument_list, + ACTIONS(1281), 1, + anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + STATE(1562), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1624), 1, + sym_expression, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, + sym_dotted_name, + STATE(3123), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1336), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1344), 2, + STATE(1838), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1346), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1334), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1356), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 8, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, anon_sym_TILDE, - sym_float, - ACTIONS(1284), 25, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + 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(1860), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [25386] = 9, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(1448), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(1477), 1, - anon_sym_QMARK_DOT, - ACTIONS(1499), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, + STATE(1850), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1485), 24, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25755] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1277), 1, + anon_sym_QMARK_DOT, + ACTIONS(1281), 1, anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + ACTIONS(1317), 1, + sym_identifier, + STATE(1526), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1487), 29, - anon_sym_import, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1887), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [25467] = 11, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(1448), 1, - anon_sym_PLUS, - ACTIONS(1457), 1, - anon_sym_and, - ACTIONS(1477), 1, - anon_sym_QMARK_DOT, - ACTIONS(1499), 1, - anon_sym_or, - ACTIONS(1501), 1, - anon_sym_as, - ACTIONS(1503), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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(1491), 24, - sym__dedent, + sym_attribute, + sym_optional_attribute, + sym_optional_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25870] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(892), 1, + anon_sym_not, + ACTIONS(902), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1277), 1, + anon_sym_QMARK_DOT, + ACTIONS(1281), 1, anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + STATE(1554), 1, + sym_expression, + STATE(1562), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, + sym_dotted_name, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1838), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1493), 27, - anon_sym_import, - anon_sym_assert, - anon_sym_else, - anon_sym_lambda, - anon_sym_in, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + STATE(1860), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [25552] = 25, - ACTIONS(758), 1, + STATE(1850), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [25985] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, + ACTIONS(1317), 1, sym_identifier, - STATE(1750), 1, + STATE(1543), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1565), 1, + sym_call, + STATE(1728), 1, sym_selector_expression, - STATE(2363), 1, - sym_expression, - STATE(2472), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1887), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43438,8 +46254,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -43454,70 +46271,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25664] = 25, - ACTIONS(507), 1, + [26100] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1505), 1, + ACTIONS(938), 1, sym_identifier, - STATE(1433), 1, + ACTIONS(940), 1, + anon_sym_not, + STATE(1345), 1, + sym_expression, + STATE(1350), 1, sym_primary_expression, - STATE(1577), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2431), 1, sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1659), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43525,8 +46343,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -43541,70 +46360,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25776] = 25, - ACTIONS(401), 1, + [26215] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1210), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1682), 1, + sym_call, + STATE(1809), 1, + sym_expression, + STATE(1923), 1, sym_selector_expression, - STATE(2325), 1, + STATE(2522), 1, sym_dotted_name, - STATE(2486), 1, - sym_expression, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43612,8 +46432,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -43628,135 +46449,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [25888] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1523), 26, + [26330] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1281), 1, anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + ACTIONS(1317), 1, + sym_identifier, + STATE(1557), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2555), 1, + sym_expression, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1525), 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, + 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(1887), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [25956] = 25, - ACTIONS(483), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [26445] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(493), 1, + ACTIONS(892), 1, anon_sym_not, - ACTIONS(503), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1283), 1, sym_float, - STATE(1334), 1, + STATE(1562), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2427), 1, + STATE(1565), 1, + sym_call, + STATE(1576), 1, sym_expression, - STATE(2501), 1, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43764,8 +46610,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -43780,70 +46627,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26068] = 25, - ACTIONS(1093), 1, + [26560] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(1099), 1, - anon_sym_lambda, - ACTIONS(1113), 1, - sym_string_start, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1227), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(537), 1, sym_float, - STATE(347), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(353), 1, + STATE(1431), 1, + sym_call, + STATE(1480), 1, sym_expression, - STATE(554), 1, + STATE(1615), 1, sym_selector_expression, - STATE(2467), 1, + STATE(2508), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43851,8 +46699,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -43867,70 +46716,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26180] = 25, - ACTIONS(9), 1, + [26675] = 26, + ACTIONS(880), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(892), 1, + anon_sym_not, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(1271), 1, + anon_sym_LPAREN, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1553), 1, + STATE(1484), 1, sym_expression, - STATE(1569), 1, + STATE(1562), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1565), 1, + sym_call, + STATE(1652), 1, sym_selector_expression, - STATE(2401), 1, + STATE(2428), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -43938,8 +46788,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -43954,70 +46805,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26292] = 25, - ACTIONS(483), 1, + [26790] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - STATE(1334), 1, + STATE(1196), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2439), 1, + STATE(1200), 1, + sym_call, + STATE(1212), 1, sym_expression, - STATE(2501), 1, + STATE(1272), 1, + sym_selector_expression, + STATE(2468), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44025,8 +46877,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44041,70 +46894,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26404] = 25, - ACTIONS(483), 1, + [26905] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(892), 1, + anon_sym_not, + ACTIONS(902), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, + STATE(1562), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2528), 1, + STATE(1565), 1, + sym_call, + STATE(1574), 1, sym_expression, - STATE(3210), 1, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, + sym_dotted_name, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44112,8 +46966,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44128,70 +46983,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26516] = 25, - ACTIONS(9), 1, + [27020] = 26, + ACTIONS(880), 1, sym_identifier, - ACTIONS(13), 1, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(892), 1, + anon_sym_not, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(1271), 1, + anon_sym_LPAREN, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + STATE(1555), 1, + sym_expression, + STATE(1562), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1565), 1, + sym_call, + STATE(1652), 1, sym_selector_expression, - STATE(2357), 1, - sym_expression, - STATE(2401), 1, + STATE(2428), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44199,8 +47055,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44215,70 +47072,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26628] = 25, - ACTIONS(483), 1, + [27135] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(1067), 1, + ACTIONS(1317), 1, sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1155), 1, - sym_expression, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, + STATE(1560), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1565), 1, + sym_call, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2532), 1, + sym_expression, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1887), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44286,8 +47144,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44302,70 +47161,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26740] = 25, - ACTIONS(483), 1, + [27250] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(493), 1, + ACTIONS(1151), 1, anon_sym_not, - ACTIONS(503), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1235), 1, sym_float, - STATE(1334), 1, + STATE(403), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2395), 1, + STATE(618), 1, sym_expression, - STATE(2501), 1, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(952), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44373,8 +47233,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44389,70 +47250,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26852] = 25, - ACTIONS(483), 1, + [27365] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(892), 1, + anon_sym_not, + ACTIONS(902), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1156), 1, + STATE(1492), 1, sym_expression, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, + STATE(1562), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1565), 1, + sym_call, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44460,8 +47322,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44476,70 +47339,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [26964] = 25, - ACTIONS(483), 1, + [27480] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1044), 1, + sym_identifier, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, + STATE(1192), 1, + sym_expression, + STATE(1196), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1200), 1, + sym_call, + STATE(1272), 1, + sym_selector_expression, + STATE(2468), 1, sym_dotted_name, - STATE(2506), 1, - sym_expression, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44547,8 +47411,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44563,70 +47428,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27076] = 25, - ACTIONS(483), 1, + [27595] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - STATE(1938), 1, - sym_expression, - STATE(1961), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(2021), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2370), 1, + sym_expression, + STATE(2441), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44634,8 +47500,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44650,70 +47517,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27188] = 25, - ACTIONS(483), 1, + [27710] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1067), 1, + ACTIONS(906), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1209), 1, + STATE(1214), 1, sym_selector_expression, - STATE(1952), 1, + STATE(1387), 1, + sym_call, + STATE(2004), 1, sym_primary_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2521), 1, + STATE(2561), 1, sym_expression, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44721,8 +47589,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44737,70 +47606,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27300] = 25, - ACTIONS(483), 1, + [27825] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1044), 1, + sym_identifier, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(2000), 1, + STATE(1190), 1, + sym_expression, + STATE(1196), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1200), 1, + sym_call, + STATE(1272), 1, + sym_selector_expression, + STATE(2468), 1, sym_dotted_name, - STATE(2528), 1, - sym_expression, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44808,8 +47678,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44824,70 +47695,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27412] = 25, - ACTIONS(483), 1, + [27940] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1044), 1, + sym_identifier, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - STATE(1961), 1, + STATE(1196), 1, sym_primary_expression, - STATE(1982), 1, + STATE(1200), 1, + sym_call, + STATE(1201), 1, sym_expression, - STATE(2021), 1, + STATE(1272), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44895,8 +47767,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44911,70 +47784,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27524] = 25, - ACTIONS(483), 1, + [28055] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1044), 1, + sym_identifier, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, + STATE(1196), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2523), 1, + STATE(1200), 1, + sym_call, + STATE(1207), 1, sym_expression, - STATE(3210), 1, + STATE(1272), 1, + sym_selector_expression, + STATE(2468), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -44982,8 +47856,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -44998,70 +47873,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27636] = 25, - ACTIONS(483), 1, + [28170] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, + STATE(403), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2536), 1, + STATE(608), 1, sym_expression, - STATE(3210), 1, + STATE(868), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2426), 1, + sym_dotted_name, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(952), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45069,8 +47945,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45085,135 +47962,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27748] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_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(1531), 33, - anon_sym_import, + [28285] = 26, + ACTIONS(435), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(443), 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(449), 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, - [27816] = 25, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1099), 1, - anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1193), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - STATE(315), 1, - sym_expression, - STATE(347), 1, + STATE(1376), 1, sym_primary_expression, - STATE(554), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2467), 1, + STATE(2456), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2484), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45221,8 +48034,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45237,70 +48051,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [27928] = 25, - ACTIONS(483), 1, + [28400] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 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(1334), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2485), 1, + STATE(2483), 1, sym_expression, - STATE(2501), 1, + STATE(2514), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45308,8 +48123,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45324,70 +48140,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28040] = 25, - ACTIONS(483), 1, + [28515] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(988), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(990), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1283), 1, sym_float, - STATE(1334), 1, + STATE(1500), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1565), 1, + sym_call, + STATE(1771), 1, sym_selector_expression, - STATE(2477), 1, + STATE(2338), 1, sym_expression, - STATE(2501), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45395,8 +48212,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45411,70 +48229,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28152] = 25, - ACTIONS(483), 1, + [28630] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - STATE(1334), 1, + STATE(1175), 1, + sym_expression, + STATE(1196), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1200), 1, + sym_call, + STATE(1272), 1, sym_selector_expression, - STATE(2469), 1, - sym_expression, - STATE(2501), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45482,8 +48301,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45498,70 +48318,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28264] = 25, - ACTIONS(483), 1, + [28745] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - STATE(1334), 1, + STATE(1196), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2461), 1, + STATE(1200), 1, + sym_call, + STATE(1206), 1, sym_expression, - STATE(2501), 1, + STATE(1272), 1, + sym_selector_expression, + STATE(2468), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45569,8 +48390,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45585,70 +48407,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28376] = 25, - ACTIONS(483), 1, + [28860] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - STATE(1334), 1, + STATE(1196), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2393), 1, + STATE(1197), 1, sym_expression, - STATE(2501), 1, + STATE(1200), 1, + sym_call, + STATE(1272), 1, + sym_selector_expression, + STATE(2468), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45656,8 +48479,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45672,70 +48496,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28488] = 25, - ACTIONS(483), 1, + [28975] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - STATE(1334), 1, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1524), 1, + sym_expression, + STATE(1592), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1649), 1, sym_selector_expression, - STATE(2433), 1, - sym_expression, - STATE(2501), 1, + STATE(1765), 1, + sym_call, + STATE(2492), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45743,8 +48568,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45759,70 +48585,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28600] = 25, - ACTIONS(483), 1, + [29090] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - STATE(1334), 1, + ACTIONS(932), 1, + sym_identifier, + ACTIONS(934), 1, + anon_sym_not, + STATE(1387), 1, + sym_call, + STATE(2035), 1, + sym_expression, + STATE(2043), 1, sym_primary_expression, - STATE(1456), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2420), 1, - sym_expression, - STATE(2501), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45830,8 +48657,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45846,70 +48674,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28712] = 25, - ACTIONS(1093), 1, + [29205] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(1099), 1, - anon_sym_lambda, - ACTIONS(1113), 1, - sym_string_start, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1227), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(537), 1, sym_float, - STATE(347), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(554), 1, - sym_selector_expression, - STATE(1136), 1, + STATE(1431), 1, + sym_call, + STATE(1432), 1, sym_expression, - STATE(2467), 1, + STATE(1615), 1, + sym_selector_expression, + STATE(2508), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -45917,8 +48746,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -45933,70 +48763,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28824] = 25, - ACTIONS(483), 1, + [29320] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(493), 1, + ACTIONS(892), 1, anon_sym_not, - ACTIONS(503), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1283), 1, sym_float, - STATE(1334), 1, + STATE(1562), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2408), 1, + STATE(1565), 1, + sym_call, + STATE(1588), 1, sym_expression, - STATE(2501), 1, + STATE(1652), 1, + sym_selector_expression, + STATE(2428), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46004,8 +48835,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46020,70 +48852,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [28936] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1093), 1, + [29435] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1103), 1, - anon_sym_not, - ACTIONS(1113), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(988), 1, + sym_identifier, + ACTIONS(990), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1283), 1, sym_float, - STATE(317), 1, - sym_expression, - STATE(389), 1, + STATE(1500), 1, sym_primary_expression, - STATE(702), 1, + STATE(1565), 1, + sym_call, + STATE(1771), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2344), 1, + sym_expression, + STATE(2463), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46091,8 +48924,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46107,70 +48941,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29048] = 25, - ACTIONS(483), 1, + [29550] = 26, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(545), 1, + ACTIONS(1203), 1, sym_identifier, - ACTIONS(547), 1, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1315), 1, sym_float, - STATE(1334), 1, + STATE(1045), 1, + sym_expression, + STATE(1054), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1059), 1, sym_selector_expression, - STATE(2399), 1, - sym_expression, - STATE(2501), 1, + STATE(1064), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1092), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46178,8 +49013,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46194,70 +49030,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29160] = 25, - ACTIONS(483), 1, + [29665] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 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(1334), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2394), 1, + STATE(1431), 1, + sym_call, + STATE(1443), 1, sym_expression, - STATE(2501), 1, + STATE(1615), 1, + sym_selector_expression, + STATE(2508), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46265,8 +49102,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46281,70 +49119,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29272] = 25, - ACTIONS(483), 1, + [29780] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 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(1334), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2405), 1, + STATE(1423), 1, sym_expression, - STATE(2501), 1, + STATE(1431), 1, + sym_call, + STATE(1615), 1, + sym_selector_expression, + STATE(2508), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46352,8 +49191,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46368,70 +49208,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29384] = 25, - ACTIONS(483), 1, + [29895] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 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(1334), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2398), 1, + STATE(1431), 1, + sym_call, + STATE(1446), 1, sym_expression, - STATE(2501), 1, + STATE(1615), 1, + sym_selector_expression, + STATE(2508), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46439,8 +49280,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46455,70 +49297,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29496] = 25, - ACTIONS(483), 1, + [30010] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(493), 1, + ACTIONS(1028), 1, anon_sym_not, - ACTIONS(503), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1249), 1, sym_float, - STATE(1334), 1, + STATE(370), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2406), 1, + STATE(600), 1, sym_expression, - STATE(2501), 1, + STATE(870), 1, + sym_selector_expression, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46526,8 +49369,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46542,70 +49386,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29608] = 25, - ACTIONS(401), 1, + [30125] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(988), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(990), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1283), 1, sym_float, - STATE(1210), 1, + STATE(1500), 1, sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2415), 1, + STATE(1565), 1, + sym_call, + STATE(1624), 1, sym_expression, - STATE(2454), 1, + STATE(1771), 1, + sym_selector_expression, + STATE(2463), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46613,8 +49458,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46629,70 +49475,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29720] = 25, - ACTIONS(401), 1, + [30240] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, - sym_primary_expression, - STATE(1253), 1, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2374), 1, - sym_expression, - STATE(2454), 1, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2549), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46700,8 +49547,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46716,70 +49564,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29832] = 25, - ACTIONS(401), 1, + [30355] = 26, + 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(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(537), 1, sym_float, - STATE(1210), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2419), 1, + STATE(1431), 1, + sym_call, + STATE(1472), 1, sym_expression, - STATE(2454), 1, + STATE(1615), 1, + sym_selector_expression, + STATE(2508), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1668), 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(1376), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46787,8 +49636,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46803,70 +49653,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [29944] = 25, - ACTIONS(401), 1, + [30470] = 26, + 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(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(537), 1, sym_float, - STATE(1210), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2375), 1, + STATE(1422), 1, sym_expression, - STATE(2454), 1, + STATE(1431), 1, + sym_call, + STATE(1615), 1, + sym_selector_expression, + STATE(2508), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1668), 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(1376), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46874,8 +49725,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46890,70 +49742,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30056] = 25, - ACTIONS(401), 1, + [30585] = 26, + 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(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(537), 1, sym_float, - STATE(1210), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2320), 1, - sym_dotted_name, - STATE(2424), 1, + STATE(2303), 1, sym_expression, - STATE(3146), 1, + STATE(2514), 1, + sym_dotted_name, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1748), 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(1376), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -46961,8 +49814,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -46977,70 +49831,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30168] = 25, - ACTIONS(401), 1, + [30700] = 26, + 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(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(537), 1, sym_float, - STATE(1210), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1421), 1, + sym_expression, + STATE(1431), 1, + sym_call, + STATE(1615), 1, sym_selector_expression, - STATE(2322), 1, + STATE(2508), 1, sym_dotted_name, - STATE(2442), 1, - sym_expression, - STATE(3146), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1668), 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(1376), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47048,8 +49903,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47064,70 +49920,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30280] = 25, - ACTIONS(483), 1, + [30815] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 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(1334), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1403), 1, + sym_identifier, + STATE(1410), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1431), 1, + sym_call, + STATE(1568), 1, sym_selector_expression, - STATE(2476), 1, - sym_expression, - STATE(2501), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2558), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47135,8 +49992,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47151,70 +50009,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30392] = 25, - ACTIONS(507), 1, + [30930] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2479), 1, + STATE(2443), 1, sym_expression, - STATE(3161), 1, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47222,8 +50081,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47238,70 +50098,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30504] = 25, - ACTIONS(758), 1, + [31045] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, + ACTIONS(906), 1, sym_identifier, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2472), 1, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2495), 1, + STATE(2546), 1, sym_expression, - STATE(3189), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47309,8 +50170,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47325,7 +50187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30616] = 25, + [31160] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -47334,50 +50196,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2503), 1, + STATE(2526), 1, sym_expression, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -47388,7 +50251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47396,8 +50259,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47412,70 +50276,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30728] = 25, - ACTIONS(13), 1, + [31275] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, + ACTIONS(906), 1, sym_identifier, - ACTIONS(1029), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1502), 1, + STATE(1173), 1, sym_expression, - STATE(1564), 1, - sym_primary_expression, - STATE(1726), 1, + STATE(1214), 1, sym_selector_expression, - STATE(2470), 1, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1848), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47483,8 +50348,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47499,7 +50365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30840] = 25, + [31390] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -47508,50 +50374,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2378), 1, + STATE(2393), 1, sym_expression, - STATE(2454), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -47562,7 +50429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47570,8 +50437,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47586,70 +50454,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [30952] = 25, - ACTIONS(401), 1, + [31505] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(988), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(990), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1283), 1, sym_float, - STATE(1210), 1, + STATE(1500), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1565), 1, + sym_call, + STATE(1571), 1, + sym_expression, + STATE(1771), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2463), 1, sym_dotted_name, - STATE(2504), 1, - sym_expression, - STATE(3146), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47657,8 +50526,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47673,70 +50543,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31064] = 25, - ACTIONS(401), 1, + [31620] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1210), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2380), 1, + STATE(1682), 1, + sym_call, + STATE(1779), 1, sym_expression, - STATE(2454), 1, + STATE(1923), 1, + sym_selector_expression, + STATE(2522), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47744,8 +50615,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47760,7 +50632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31176] = 25, + [31735] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -47769,50 +50641,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1507), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2323), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2478), 1, + STATE(2527), 1, sym_expression, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -47823,7 +50696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47831,8 +50704,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47847,70 +50721,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31288] = 25, - ACTIONS(401), 1, + [31850] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1210), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1682), 1, + sym_call, + STATE(1696), 1, + sym_expression, + STATE(1923), 1, sym_selector_expression, - STATE(2324), 1, + STATE(2522), 1, sym_dotted_name, - STATE(2475), 1, - sym_expression, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -47918,8 +50793,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -47934,70 +50810,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31400] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [31965] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(19), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(772), 1, + anon_sym_LBRACK, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(55), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1675), 1, + sym_expression, + STATE(1682), 1, + sym_call, + STATE(1923), 1, sym_selector_expression, - STATE(2401), 1, + STATE(2522), 1, sym_dotted_name, - STATE(2498), 1, - sym_expression, - STATE(3016), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48005,8 +50882,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48021,70 +50899,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31512] = 25, - ACTIONS(483), 1, + [32080] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(788), 1, sym_float, - STATE(1334), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2423), 1, + STATE(1682), 1, + sym_call, + STATE(1780), 1, sym_expression, - STATE(2501), 1, + STATE(1923), 1, + sym_selector_expression, + STATE(2522), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48092,8 +50971,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48108,70 +50988,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31624] = 25, - ACTIONS(507), 1, + [32195] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(1167), 1, sym_identifier, - STATE(1408), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2421), 1, + STATE(2430), 1, sym_expression, - STATE(3161), 1, + STATE(2501), 1, + sym_dotted_name, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48179,8 +51060,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48195,70 +51077,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31736] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [32310] = 26, + 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(1215), 1, + sym_identifier, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2286), 1, - sym_expression, - STATE(2401), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3016), 1, + STATE(2432), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1408), 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(1849), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48266,8 +51149,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48282,70 +51166,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31848] = 25, - ACTIONS(483), 1, + [32425] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(1952), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2519), 1, + STATE(1287), 1, + sym_selector_expression, + STATE(2372), 1, sym_expression, - STATE(3210), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48353,8 +51238,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48369,70 +51255,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [31960] = 25, - ACTIONS(758), 1, + [32540] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1153), 1, + ACTIONS(954), 1, sym_identifier, - STATE(1750), 1, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2466), 1, + STATE(1682), 1, + sym_call, + STATE(1800), 1, sym_expression, - STATE(2472), 1, + STATE(1923), 1, + sym_selector_expression, + STATE(2522), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48440,8 +51327,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48456,7 +51344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32072] = 25, + [32655] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -48465,50 +51353,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2480), 1, + STATE(2366), 1, sym_expression, - STATE(3146), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -48519,7 +51408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48527,8 +51416,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48543,70 +51433,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32184] = 25, - ACTIONS(401), 1, + [32770] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1210), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2383), 1, + STATE(1682), 1, + sym_call, + STATE(1781), 1, sym_expression, - STATE(2454), 1, + STATE(1923), 1, + sym_selector_expression, + STATE(2522), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48614,8 +51505,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48630,70 +51522,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32296] = 25, - ACTIONS(401), 1, + [32885] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1210), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1671), 1, + sym_expression, + STATE(1682), 1, + sym_call, + STATE(1923), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2522), 1, sym_dotted_name, - STATE(2481), 1, - sym_expression, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48701,8 +51594,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48717,72 +51611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32408] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_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(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, - 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, - [32476] = 25, + [33000] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -48791,50 +51620,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2384), 1, - sym_expression, - STATE(2454), 1, + STATE(2316), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2502), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -48845,7 +51675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48853,8 +51683,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48869,7 +51700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32588] = 25, + [33115] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -48878,50 +51709,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1507), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2328), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2482), 1, + STATE(2435), 1, sym_expression, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -48932,7 +51764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -48940,8 +51772,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -48956,7 +51789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32700] = 25, + [33230] = 26, ACTIONS(13), 1, anon_sym_DOT, ACTIONS(19), 1, @@ -48973,42 +51806,43 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(55), 1, sym_string_start, - ACTIONS(184), 1, + ACTIONS(180), 1, anon_sym_LBRACK, - ACTIONS(1069), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1537), 1, + ACTIONS(1405), 1, sym_identifier, - STATE(1529), 1, + STATE(1490), 1, + sym_call, + STATE(1547), 1, sym_primary_expression, - STATE(1768), 1, + STATE(1769), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2527), 1, + STATE(2557), 1, sym_expression, - STATE(3016), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1896), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -49019,7 +51853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49027,8 +51861,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49043,7 +51878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32812] = 25, + [33345] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -49052,50 +51887,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1507), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2329), 1, - sym_dotted_name, - STATE(2505), 1, + STATE(2368), 1, sym_expression, - STATE(3146), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -49106,7 +51942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49114,8 +51950,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49130,135 +51967,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [32924] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1539), 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(1541), 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, - [32992] = 25, - ACTIONS(483), 1, + [33460] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(493), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - STATE(1334), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2494), 1, - sym_expression, - STATE(2501), 1, + STATE(2326), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2436), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49266,8 +52039,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49282,70 +52056,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33104] = 25, - ACTIONS(507), 1, + [33575] = 26, + 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(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2493), 1, + STATE(2417), 1, sym_expression, - STATE(3161), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1408), 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(1798), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49353,8 +52128,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49369,70 +52145,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33216] = 25, - ACTIONS(758), 1, + [33690] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1153), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1405), 1, sym_identifier, - STATE(1750), 1, + STATE(1490), 1, + sym_call, + STATE(1548), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1769), 1, sym_selector_expression, - STATE(2468), 1, - sym_expression, - STATE(2472), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2556), 1, + sym_expression, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49440,8 +52217,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49456,7 +52234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33328] = 25, + [33805] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -49465,50 +52243,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2352), 1, sym_dotted_name, - STATE(2458), 1, + STATE(2528), 1, sym_expression, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -49519,7 +52298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49527,8 +52306,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49543,70 +52323,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33440] = 25, - ACTIONS(401), 1, + [33920] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_not, + STATE(1167), 1, + sym_expression, + STATE(1350), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2390), 1, - sym_expression, - STATE(2454), 1, + STATE(2431), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49614,8 +52395,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49630,7 +52412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33552] = 25, + [34035] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -49639,50 +52421,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2336), 1, sym_dotted_name, - STATE(2456), 1, + STATE(2466), 1, sym_expression, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -49693,7 +52476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49701,8 +52484,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49717,70 +52501,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33664] = 25, - ACTIONS(401), 1, + [34150] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_not, + STATE(1173), 1, + sym_expression, + STATE(1350), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2391), 1, - sym_expression, - STATE(2454), 1, + STATE(2431), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49788,8 +52573,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49804,70 +52590,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33776] = 25, - ACTIONS(401), 1, + [34265] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1210), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1167), 1, + sym_identifier, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2331), 1, - sym_dotted_name, - STATE(2453), 1, + STATE(2444), 1, sym_expression, - STATE(3146), 1, + STATE(2501), 1, + sym_dotted_name, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49875,8 +52662,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49891,70 +52679,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [33888] = 25, - ACTIONS(401), 1, + [34380] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_not, + STATE(1350), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1373), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2332), 1, + STATE(2431), 1, sym_dotted_name, - STATE(2450), 1, - sym_expression, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -49962,8 +52751,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -49978,70 +52768,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34000] = 25, - ACTIONS(483), 1, + [34495] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - STATE(1334), 1, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_not, + STATE(1350), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2432), 1, + STATE(1357), 1, sym_expression, - STATE(2501), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, + sym_selector_expression, + STATE(2431), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50049,8 +52840,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50065,70 +52857,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34112] = 25, - ACTIONS(507), 1, + [34610] = 26, + ACTIONS(880), 1, + sym_identifier, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(892), 1, + anon_sym_not, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, + STATE(1562), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1565), 1, + sym_call, + STATE(1573), 1, + sym_expression, + STATE(1652), 1, sym_selector_expression, - STATE(2411), 1, + STATE(2428), 1, sym_dotted_name, - STATE(2430), 1, - sym_expression, - STATE(3161), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1860), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50136,8 +52929,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50152,70 +52946,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34224] = 25, - ACTIONS(758), 1, + [34725] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, + ACTIONS(938), 1, sym_identifier, - STATE(1750), 1, + ACTIONS(940), 1, + anon_sym_not, + STATE(1350), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1362), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2472), 1, + STATE(2431), 1, sym_dotted_name, - STATE(2499), 1, - sym_expression, - STATE(3189), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50223,8 +53018,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50239,70 +53035,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34336] = 25, - ACTIONS(401), 1, + [34840] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_not, + STATE(1350), 1, sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2410), 1, + STATE(1363), 1, sym_expression, - STATE(2454), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, + sym_selector_expression, + STATE(2431), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50310,8 +53107,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50326,70 +53124,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34448] = 25, - ACTIONS(401), 1, + [34955] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_not, + STATE(1350), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1359), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2283), 1, + STATE(2431), 1, sym_dotted_name, - STATE(2474), 1, - sym_expression, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50397,8 +53196,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50413,70 +53213,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34560] = 25, - ACTIONS(401), 1, + [35070] = 26, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1084), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1315), 1, sym_float, - STATE(1210), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2382), 1, + STATE(1064), 1, + sym_call, + STATE(2000), 1, sym_expression, - STATE(2454), 1, + STATE(2439), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50484,8 +53285,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50500,70 +53302,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34672] = 25, - ACTIONS(401), 1, + [35185] = 26, + 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(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(537), 1, sym_float, - STATE(1210), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, STATE(2449), 1, sym_expression, - STATE(2454), 1, + STATE(2514), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1748), 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(1376), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50571,8 +53374,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50587,70 +53391,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34784] = 25, - ACTIONS(401), 1, + [35300] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2379), 1, + STATE(2451), 1, sym_expression, - STATE(2454), 1, + STATE(2456), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50658,8 +53463,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50674,7 +53480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [34896] = 25, + [35415] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -50683,50 +53489,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1507), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2335), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2490), 1, + STATE(2525), 1, sym_expression, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -50737,7 +53544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50745,8 +53552,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50761,70 +53569,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35008] = 25, - ACTIONS(401), 1, + [35530] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2344), 1, - sym_expression, - STATE(2454), 1, + STATE(2456), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2524), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50832,8 +53641,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50848,70 +53658,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35120] = 25, - ACTIONS(401), 1, + [35645] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, - sym_primary_expression, - STATE(1253), 1, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1167), 1, + sym_expression, + STATE(1214), 1, sym_selector_expression, - STATE(2336), 1, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2418), 1, - sym_expression, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -50919,8 +53730,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -50935,70 +53747,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35232] = 25, - ACTIONS(483), 1, + [35760] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 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(1334), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2417), 1, - sym_expression, - STATE(2501), 1, + STATE(2514), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2519), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51006,8 +53819,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51022,70 +53836,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35344] = 25, - ACTIONS(507), 1, + [35875] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(1167), 1, sym_identifier, - STATE(1408), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2411), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2459), 1, + STATE(2504), 1, sym_expression, - STATE(3161), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51093,8 +53908,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51109,70 +53925,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35456] = 25, - ACTIONS(758), 1, + [35990] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, + ACTIONS(1269), 1, sym_identifier, - STATE(1750), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2422), 1, - sym_expression, - STATE(2472), 1, + STATE(2320), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2445), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51180,8 +53997,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51196,70 +54014,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35568] = 25, - ACTIONS(758), 1, + [36105] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, - sym_identifier, - STATE(1750), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2451), 1, + STATE(2249), 1, sym_expression, - STATE(2472), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51267,8 +54086,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51283,59 +54103,60 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35680] = 25, + [36220] = 26, 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(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + ACTIONS(1407), 1, + sym_identifier, + STATE(1199), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, STATE(2434), 1, - sym_expression, - STATE(2454), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2567), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1389), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -51346,7 +54167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51354,8 +54175,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51370,7 +54192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35792] = 25, + [36335] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -51379,50 +54201,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2349), 1, - sym_expression, - STATE(2454), 1, + STATE(2323), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2438), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -51433,7 +54256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51441,8 +54264,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51457,7 +54281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [35904] = 25, + [36450] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -51466,50 +54290,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2428), 1, + STATE(2403), 1, sym_expression, - STATE(2454), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -51520,7 +54345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51528,8 +54353,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51544,7 +54370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36016] = 25, + [36565] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -51553,50 +54379,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, STATE(2351), 1, sym_expression, - STATE(2454), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -51607,7 +54434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51615,8 +54442,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51631,70 +54459,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36128] = 25, - ACTIONS(401), 1, + [36680] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, - sym_primary_expression, - STATE(1253), 1, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2330), 1, + STATE(1387), 1, + sym_call, + STATE(2004), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2426), 1, + STATE(2566), 1, sym_expression, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1280), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [36795] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, + anon_sym_LBRACE, + ACTIONS(559), 1, + anon_sym_QMARK_DOT, + ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(932), 1, + sym_identifier, + ACTIONS(934), 1, + anon_sym_not, + STATE(1387), 1, + sym_call, + STATE(2013), 1, + sym_expression, + STATE(2043), 1, + sym_primary_expression, + STATE(2044), 1, + sym_selector_expression, + STATE(2470), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, sym_binary_operator, sym_subscript, - sym_call, + ACTIONS(1369), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1371), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51702,8 +54620,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51718,70 +54637,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36240] = 25, - ACTIONS(401), 1, + [36910] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1507), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2327), 1, + STATE(2456), 1, sym_dotted_name, - STATE(2416), 1, + STATE(2486), 1, sym_expression, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51789,8 +54709,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51805,70 +54726,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36352] = 25, - ACTIONS(483), 1, + [37025] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - STATE(1334), 1, + ACTIONS(932), 1, + sym_identifier, + ACTIONS(934), 1, + anon_sym_not, + STATE(1387), 1, + sym_call, + STATE(2027), 1, + sym_expression, + STATE(2043), 1, sym_primary_expression, - STATE(1456), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2443), 1, - sym_expression, - STATE(2501), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51876,8 +54798,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51892,70 +54815,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36464] = 25, - ACTIONS(507), 1, + [37140] = 26, + 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(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2411), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2435), 1, + STATE(2490), 1, sym_expression, - STATE(3161), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1408), 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(1798), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -51963,8 +54887,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -51979,70 +54904,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36576] = 25, - ACTIONS(758), 1, + [37255] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, + ACTIONS(932), 1, sym_identifier, - STATE(1750), 1, + ACTIONS(934), 1, + anon_sym_not, + STATE(1167), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(2043), 1, sym_primary_expression, - STATE(1853), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2409), 1, - sym_expression, - STATE(2472), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52050,8 +54976,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52066,70 +54993,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36688] = 25, - ACTIONS(1093), 1, + [37370] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - STATE(347), 1, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1175), 1, + anon_sym_not, + STATE(1620), 1, sym_primary_expression, - STATE(554), 1, + STATE(1669), 1, sym_selector_expression, - STATE(1133), 1, + STATE(1765), 1, + sym_call, + STATE(2328), 1, sym_expression, - STATE(2467), 1, + STATE(2480), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52137,8 +55065,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52153,70 +55082,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36800] = 25, - ACTIONS(401), 1, + [37485] = 26, + 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(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, - anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(53), 1, sym_float, - STATE(1210), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, + sym_identifier, + ACTIONS(924), 1, + anon_sym_not, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2440), 1, + STATE(1566), 1, sym_expression, - STATE(2454), 1, + STATE(1725), 1, + sym_selector_expression, + STATE(2500), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1874), 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(1376), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52224,8 +55154,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52240,70 +55171,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [36912] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [37600] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + ACTIONS(932), 1, + sym_identifier, + ACTIONS(934), 1, + anon_sym_not, + STATE(1173), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(2043), 1, sym_primary_expression, - STATE(1770), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2401), 1, + STATE(2470), 1, sym_dotted_name, - STATE(2444), 1, - sym_expression, - STATE(3016), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52311,8 +55243,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52327,70 +55260,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37024] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [37715] = 26, + 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(1251), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2284), 1, - sym_expression, - STATE(2401), 1, + STATE(2325), 1, sym_dotted_name, - STATE(3016), 1, + STATE(2448), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1408), 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(1849), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52398,8 +55332,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52414,70 +55349,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37136] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [37830] = 26, + 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(1215), 1, + sym_identifier, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1595), 1, - sym_expression, - STATE(1770), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2401), 1, + STATE(2385), 1, + sym_expression, + STATE(2421), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1408), 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(1849), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52485,8 +55421,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52501,70 +55438,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37248] = 25, - ACTIONS(401), 1, + [37945] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2463), 1, + STATE(2450), 1, sym_expression, - STATE(3146), 1, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52572,8 +55510,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52588,7 +55527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37360] = 25, + [38060] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -52597,50 +55536,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2347), 1, + STATE(2360), 1, sym_expression, - STATE(2454), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -52651,7 +55591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52659,8 +55599,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52675,59 +55616,60 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37472] = 25, + [38175] = 26, 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(1169), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1196), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1200), 1, + sym_call, + STATE(1205), 1, + sym_expression, + STATE(1272), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2468), 1, sym_dotted_name, - STATE(2473), 1, - sym_expression, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -52738,7 +55680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52746,8 +55688,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52762,70 +55705,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37584] = 25, - ACTIONS(401), 1, + [38290] = 26, + 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(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, - anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(53), 1, sym_float, - STATE(1210), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1405), 1, + sym_identifier, + STATE(1490), 1, + sym_call, + STATE(1612), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1769), 1, sym_selector_expression, - STATE(2387), 1, - sym_expression, - STATE(2454), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2556), 1, + sym_expression, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1868), 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(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52833,8 +55777,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52849,7 +55794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37696] = 25, + [38405] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -52858,50 +55803,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1507), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2300), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2483), 1, + STATE(2452), 1, sym_expression, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -52912,7 +55858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -52920,8 +55866,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -52936,70 +55883,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37808] = 25, - ACTIONS(401), 1, + [38520] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + ACTIONS(932), 1, + sym_identifier, + ACTIONS(934), 1, + anon_sym_not, + STATE(1387), 1, + sym_call, + STATE(2015), 1, + sym_expression, + STATE(2043), 1, sym_primary_expression, - STATE(1253), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2356), 1, - sym_expression, - STATE(2454), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53007,8 +55955,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53023,7 +55972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [37920] = 25, + [38635] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -53032,50 +55981,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1507), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2298), 1, - sym_dotted_name, - STATE(2488), 1, + STATE(2387), 1, sym_expression, - STATE(3146), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -53086,7 +56036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53094,8 +56044,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53110,70 +56061,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38032] = 25, - ACTIONS(483), 1, + [38750] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - STATE(1334), 1, + ACTIONS(932), 1, + sym_identifier, + ACTIONS(934), 1, + anon_sym_not, + STATE(1387), 1, + sym_call, + STATE(2014), 1, + sym_expression, + STATE(2043), 1, sym_primary_expression, - STATE(1456), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2437), 1, - sym_expression, - STATE(2501), 1, + STATE(2470), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53181,8 +56133,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53197,70 +56150,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38144] = 25, - ACTIONS(507), 1, + [38865] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, + ACTIONS(932), 1, sym_identifier, - STATE(1408), 1, + ACTIONS(934), 1, + anon_sym_not, + STATE(1387), 1, + sym_call, + STATE(2033), 1, + sym_expression, + STATE(2043), 1, sym_primary_expression, - STATE(1592), 1, + STATE(2044), 1, sym_selector_expression, - STATE(2411), 1, + STATE(2470), 1, sym_dotted_name, - STATE(2500), 1, - sym_expression, - STATE(3161), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(2052), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53268,8 +56222,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53284,70 +56239,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38256] = 25, - ACTIONS(758), 1, + [38980] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1153), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, sym_identifier, - STATE(1750), 1, + ACTIONS(924), 1, + anon_sym_not, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2471), 1, + STATE(1544), 1, sym_expression, - STATE(2472), 1, + STATE(1725), 1, + sym_selector_expression, + STATE(2500), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53355,8 +56311,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53371,70 +56328,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38368] = 25, - ACTIONS(483), 1, + [39095] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1131), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(924), 1, anon_sym_not, - STATE(1961), 1, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(1995), 1, + STATE(1599), 1, sym_expression, - STATE(2021), 1, + STATE(1725), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2500), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53442,8 +56400,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53458,7 +56417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38480] = 25, + [39210] = 26, ACTIONS(401), 1, anon_sym_DOT, ACTIONS(411), 1, @@ -53467,50 +56426,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(431), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2396), 1, - sym_expression, - STATE(2454), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2454), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -53521,7 +56481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53529,8 +56489,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53545,70 +56506,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38592] = 25, - ACTIONS(483), 1, + [39325] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, + ACTIONS(545), 1, + sym_identifier, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - STATE(1946), 1, - sym_expression, - STATE(1961), 1, + STATE(1376), 1, sym_primary_expression, - STATE(2021), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2456), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2462), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53616,8 +56578,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53632,70 +56595,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38704] = 25, - ACTIONS(483), 1, + [39440] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - STATE(1155), 1, - sym_expression, - STATE(1961), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(2021), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2441), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2531), 1, + sym_expression, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53703,8 +56667,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53719,70 +56684,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38816] = 25, - ACTIONS(483), 1, + [39555] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - STATE(1156), 1, - sym_expression, - STATE(1961), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(2021), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2346), 1, + sym_expression, + STATE(2441), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53790,8 +56756,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53806,70 +56773,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [38928] = 25, - ACTIONS(483), 1, + [39670] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1131), 1, + ACTIONS(906), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1961), 1, - sym_primary_expression, - STATE(1972), 1, - sym_expression, - STATE(2021), 1, + STATE(1214), 1, sym_selector_expression, - STATE(2429), 1, + STATE(1387), 1, + sym_call, + STATE(1994), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2553), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -53877,8 +56845,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -53893,157 +56862,139 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39040] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [39785] = 5, + ACTIONS(1297), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1411), 25, + 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(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - STATE(1961), 1, - sym_primary_expression, - STATE(2002), 1, - sym_expression, - STATE(2021), 1, - sym_selector_expression, - STATE(2429), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1527), 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, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1409), 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(2026), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [39152] = 25, - ACTIONS(483), 1, + [39858] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(1133), 1, - anon_sym_not, - STATE(1961), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1996), 1, - sym_expression, - STATE(2021), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2364), 1, + sym_expression, + STATE(2421), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54051,8 +57002,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -54067,70 +57019,139 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39264] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [39973] = 5, + ACTIONS(1297), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 25, + 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_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(1413), 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, + [40046] = 26, + 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(1131), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, sym_identifier, - ACTIONS(1133), 1, + ACTIONS(924), 1, anon_sym_not, - STATE(1961), 1, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(1970), 1, + STATE(1616), 1, sym_expression, - STATE(2021), 1, + STATE(1725), 1, sym_selector_expression, - STATE(2429), 1, + STATE(2500), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(2026), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54138,8 +57159,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -54154,70 +57176,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39376] = 25, - ACTIONS(758), 1, + [40161] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(778), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1153), 1, + ACTIONS(1167), 1, sym_identifier, - STATE(1750), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2350), 1, + STATE(2422), 1, sym_expression, - STATE(2472), 1, + STATE(2501), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54225,8 +57248,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -54241,28 +57265,18 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39488] = 8, - ACTIONS(1550), 1, - anon_sym_not, - ACTIONS(1556), 1, - anon_sym_is, - STATE(521), 1, - aux_sym_comparison_operator_repeat1, + [40276] = 5, + ACTIONS(1297), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1547), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1553), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1543), 22, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1419), 25, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -54270,7 +57284,6 @@ 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, @@ -54281,9 +57294,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(1545), 27, + ACTIONS(1417), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -54291,6 +57308,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, @@ -54302,145 +57320,173 @@ 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, - [39566] = 4, - STATE(344), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1559), 26, + [40349] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(988), 1, + sym_identifier, + ACTIONS(990), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, + ACTIONS(1273), 1, anon_sym_LBRACK, + ACTIONS(1275), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1281), 1, anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + STATE(1500), 1, + sym_primary_expression, + STATE(1565), 1, + sym_call, + STATE(1771), 1, + sym_selector_expression, + STATE(2347), 1, + sym_expression, + STATE(2463), 1, + sym_dotted_name, + STATE(3123), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1838), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 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(1561), 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, + 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(1891), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(900), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [39636] = 25, - ACTIONS(483), 1, + STATE(1850), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1853), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [40464] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(902), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(1067), 1, + ACTIONS(1317), 1, sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(1962), 1, + STATE(1565), 1, + sym_call, + STATE(1584), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1728), 1, + sym_selector_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2535), 1, + STATE(2555), 1, sym_expression, - STATE(3210), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1887), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54448,8 +57494,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -54464,136 +57511,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39748] = 4, - ACTIONS(1398), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1394), 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(1396), 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, - [39818] = 25, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1093), 1, + [40579] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1563), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1421), 1, sym_identifier, - STATE(322), 1, - sym_primary_expression, - STATE(781), 1, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1371), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2534), 1, + STATE(2564), 1, sym_expression, - STATE(3059), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54601,8 +57583,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -54617,70 +57600,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [39930] = 25, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1093), 1, + [40694] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1563), 1, + ACTIONS(1421), 1, sym_identifier, - STATE(323), 1, - sym_primary_expression, - STATE(781), 1, + ACTIONS(1423), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1371), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2538), 1, + STATE(2564), 1, sym_expression, - STATE(3059), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54688,8 +57672,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -54704,265 +57689,244 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40042] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1380), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [40809] = 21, + ACTIONS(1371), 1, anon_sym_LPAREN, + ACTIONS(1373), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1379), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1381), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(1383), 1, + anon_sym_not, + ACTIONS(1389), 1, anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_AMP, + ACTIONS(1393), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_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(1382), 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, + ACTIONS(1399), 1, anon_sym_is, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [40110] = 3, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + STATE(937), 1, + sym_argument_list, + STATE(1105), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 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, + ACTIONS(1377), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1385), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1387), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1395), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(1375), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1397), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(1321), 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(1567), 33, + ACTIONS(1319), 25, 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, - [40178] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1569), 26, + [40914] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1175), 1, + anon_sym_not, + STATE(1620), 1, + sym_primary_expression, + STATE(1669), 1, + sym_selector_expression, + STATE(1765), 1, + sym_call, + STATE(2339), 1, + sym_expression, + STATE(2480), 1, + sym_dotted_name, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 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(1571), 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, + 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(1928), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [40246] = 25, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1093), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [41029] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1563), 1, - sym_identifier, - STATE(325), 1, + STATE(1192), 1, + sym_expression, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(781), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2538), 1, - sym_expression, - STATE(3059), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -54970,8 +57934,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -54986,70 +57951,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40358] = 25, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1093), 1, + [41144] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(1099), 1, - anon_sym_lambda, - ACTIONS(1113), 1, - sym_string_start, - ACTIONS(1227), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1563), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - STATE(328), 1, + STATE(1430), 1, sym_primary_expression, - STATE(781), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2538), 1, + STATE(2460), 1, sym_expression, - STATE(3059), 1, + STATE(2514), 1, + sym_dotted_name, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55057,8 +58023,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55073,70 +58040,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40470] = 25, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1093), 1, + [41259] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1563), 1, - sym_identifier, - STATE(329), 1, + STATE(1376), 1, sym_primary_expression, - STATE(781), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2456), 1, sym_dotted_name, - STATE(2538), 1, + STATE(2461), 1, sym_expression, - STATE(3059), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55144,8 +58112,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55160,70 +58129,144 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40582] = 25, - ACTIONS(1069), 1, + [41374] = 10, + ACTIONS(1371), 1, + anon_sym_LPAREN, + ACTIONS(1373), 1, + anon_sym_LBRACK, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, + anon_sym_QMARK_DOT, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1425), 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(1427), 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(1093), 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, + [41457] = 26, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(1084), 1, + anon_sym_not, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1563), 1, - sym_identifier, - STATE(330), 1, + STATE(1018), 1, sym_primary_expression, - STATE(781), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2538), 1, + STATE(1064), 1, + sym_call, + STATE(2036), 1, sym_expression, - STATE(3059), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55231,8 +58274,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55247,70 +58291,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40694] = 25, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1093), 1, + [41572] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1563), 1, - sym_identifier, - STATE(331), 1, + STATE(1376), 1, sym_primary_expression, - STATE(781), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2538), 1, + STATE(2280), 1, sym_expression, - STATE(3059), 1, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55318,8 +58363,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55334,70 +58380,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40806] = 25, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1093), 1, + [41687] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1563), 1, - sym_identifier, - STATE(332), 1, + STATE(1376), 1, sym_primary_expression, - STATE(781), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2538), 1, + STATE(2276), 1, sym_expression, - STATE(3059), 1, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55405,8 +58452,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55421,70 +58469,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [40918] = 25, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1093), 1, + [41802] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1563), 1, + ACTIONS(938), 1, sym_identifier, - STATE(333), 1, + ACTIONS(940), 1, + anon_sym_not, + STATE(1350), 1, sym_primary_expression, - STATE(781), 1, + STATE(1361), 1, + sym_expression, + STATE(1387), 1, + sym_call, + STATE(1463), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2431), 1, sym_dotted_name, - STATE(2538), 1, - sym_expression, - STATE(3059), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55492,8 +58541,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55508,70 +58558,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41030] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1093), 1, + [41917] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(1103), 1, - anon_sym_not, - ACTIONS(1113), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1235), 1, sym_float, - STATE(378), 1, - sym_expression, - STATE(389), 1, + ACTIONS(1429), 1, + sym_identifier, + STATE(627), 1, sym_primary_expression, - STATE(702), 1, + STATE(862), 1, sym_selector_expression, - STATE(2412), 1, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, + STATE(2559), 1, + sym_expression, STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55579,8 +58630,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55595,7 +58647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41142] = 25, + [42032] = 26, ACTIONS(507), 1, anon_sym_DOT, ACTIONS(509), 1, @@ -55616,38 +58668,39 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(539), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(684), 1, sym_identifier, - STATE(1408), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2388), 1, - sym_expression, - STATE(2411), 1, + STATE(2514), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2523), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -55658,7 +58711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55666,8 +58719,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55682,157 +58736,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41254] = 25, - ACTIONS(1093), 1, + [42147] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - STATE(347), 1, - sym_primary_expression, - STATE(554), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1421), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(1141), 1, - sym_expression, - STATE(2467), 1, + STATE(1356), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2564), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(906), 3, + STATE(1322), 2, sym_binary_operator, sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(908), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1111), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(905), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(904), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [41366] = 25, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1099), 1, - anon_sym_lambda, - ACTIONS(1113), 1, - sym_string_start, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1227), 1, - anon_sym_LPAREN, - ACTIONS(1229), 1, - anon_sym_LBRACK, - ACTIONS(1231), 1, - anon_sym_LBRACE, - ACTIONS(1233), 1, - anon_sym_QMARK_DOT, - ACTIONS(1237), 1, - anon_sym_DQUOTE, - ACTIONS(1239), 1, - sym_float, - STATE(347), 1, - sym_primary_expression, - STATE(554), 1, - sym_selector_expression, - STATE(1143), 1, - sym_expression, - STATE(2467), 1, - sym_dotted_name, - STATE(3059), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(907), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55840,8 +58808,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55856,70 +58825,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41478] = 25, - ACTIONS(1093), 1, + [42262] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1563), 1, - sym_identifier, - ACTIONS(1573), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(341), 1, - sym_primary_expression, - STATE(781), 1, + ACTIONS(1421), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1354), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2538), 1, + STATE(2564), 1, sym_expression, - STATE(3059), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -55927,8 +58897,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -55943,70 +58914,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41590] = 25, - ACTIONS(483), 1, + [42377] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1069), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1575), 1, + ACTIONS(1421), 1, sym_identifier, - STATE(1209), 1, + STATE(1214), 1, sym_selector_expression, STATE(1353), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2526), 1, + STATE(2564), 1, sym_expression, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56014,8 +58986,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -56030,70 +59003,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41702] = 25, - ACTIONS(483), 1, + [42492] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1575), 1, - sym_identifier, - ACTIONS(1577), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1209), 1, + ACTIONS(1421), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(1353), 1, + STATE(1347), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2526), 1, + STATE(2564), 1, sym_expression, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56101,8 +59075,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -56117,70 +59092,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41814] = 25, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1093), 1, + [42607] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1563), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1421), 1, sym_identifier, - STATE(341), 1, - sym_primary_expression, - STATE(781), 1, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1341), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2538), 1, + STATE(2564), 1, sym_expression, - STATE(3059), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56188,8 +59164,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -56204,395 +59181,249 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [41926] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1579), 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(1581), 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, - [41994] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1583), 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(1585), 33, - anon_sym_import, + [42722] = 26, + ACTIONS(435), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(443), 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, - [42062] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1587), 26, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 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(565), 1, sym_float, - ACTIONS(1589), 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(908), 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(1421), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [42130] = 3, + STATE(1214), 1, + sym_selector_expression, + STATE(1336), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(2434), 1, + sym_dotted_name, + STATE(2564), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 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, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_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(1593), 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, + 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(1280), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [42198] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1595), 26, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [42837] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 1, anon_sym_DQUOTE, + ACTIONS(565), 1, + sym_float, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1421), 1, + sym_identifier, + STATE(1214), 1, + sym_selector_expression, + STATE(1333), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(2434), 1, + sym_dotted_name, + STATE(2564), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 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(1597), 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, + 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(1280), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [42266] = 25, - ACTIONS(483), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [42952] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1067), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(2001), 1, + ACTIONS(1405), 1, + sym_identifier, + STATE(1490), 1, + sym_call, + STATE(1618), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1769), 1, + sym_selector_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2535), 1, + STATE(2556), 1, sym_expression, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56600,8 +59431,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -56616,70 +59448,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42378] = 25, - ACTIONS(483), 1, + [43067] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 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(1334), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1405), 1, + sym_identifier, + STATE(1490), 1, + sym_call, + STATE(1617), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1769), 1, sym_selector_expression, - STATE(2254), 1, - sym_expression, - STATE(2501), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2556), 1, + sym_expression, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56687,8 +59520,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -56703,70 +59537,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42490] = 25, - ACTIONS(483), 1, + [43182] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(493), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, ACTIONS(545), 1, sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - STATE(1334), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2253), 1, - sym_expression, - STATE(2501), 1, + STATE(2456), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2472), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56774,8 +59609,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -56790,70 +59626,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42602] = 25, - ACTIONS(483), 1, + [43297] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1013), 1, - sym_identifier, - ACTIONS(1015), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, anon_sym_not, - STATE(1378), 1, - sym_expression, - STATE(1387), 1, + ACTIONS(1405), 1, + sym_identifier, + STATE(1490), 1, + sym_call, + STATE(1614), 1, sym_primary_expression, - STATE(1399), 1, + STATE(1769), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2556), 1, + sym_expression, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1526), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -56861,8 +59698,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -56877,136 +59715,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42714] = 4, - STATE(1085), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1599), 26, + [43412] = 26, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1161), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(1193), 1, + sym_identifier, + ACTIONS(1195), 1, + anon_sym_not, + ACTIONS(1223), 1, anon_sym_LPAREN, + ACTIONS(1225), 1, anon_sym_LBRACK, + ACTIONS(1227), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1233), 1, anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + STATE(549), 1, + sym_primary_expression, + STATE(876), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(1145), 1, + sym_expression, + STATE(2496), 1, + sym_dotted_name, + STATE(3059), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1231), 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(1601), 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, + 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(911), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1159), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [42784] = 25, - ACTIONS(483), 1, + STATE(977), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(979), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [43527] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1067), 1, - sym_identifier, - ACTIONS(1069), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(2006), 1, + ACTIONS(1405), 1, + sym_identifier, + STATE(1490), 1, + sym_call, + STATE(1611), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1769), 1, + sym_selector_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2535), 1, + STATE(2556), 1, sym_expression, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57014,8 +59876,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57030,70 +59893,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [42896] = 25, - ACTIONS(483), 1, + [43642] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1575), 1, + ACTIONS(1269), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1383), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1287), 1, + sym_selector_expression, + STATE(2362), 1, sym_dotted_name, - STATE(2526), 1, + STATE(2479), 1, sym_expression, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57101,8 +59965,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57117,70 +59982,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43008] = 25, - ACTIONS(483), 1, + [43757] = 26, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1575), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1384), 1, + ACTIONS(1431), 1, + anon_sym_not, + STATE(627), 1, sym_primary_expression, - STATE(2414), 1, + STATE(862), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2526), 1, + STATE(2559), 1, sym_expression, - STATE(3210), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57188,8 +60054,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57204,70 +60071,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43120] = 25, - ACTIONS(483), 1, + [43872] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1069), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1575), 1, + ACTIONS(1405), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1388), 1, + STATE(1490), 1, + sym_call, + STATE(1610), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1769), 1, + sym_selector_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2526), 1, + STATE(2556), 1, sym_expression, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57275,8 +60143,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57291,70 +60160,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43232] = 25, - ACTIONS(483), 1, + [43987] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1069), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1575), 1, + ACTIONS(1405), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1389), 1, + STATE(1490), 1, + sym_call, + STATE(1609), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1769), 1, + sym_selector_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2526), 1, + STATE(2556), 1, sym_expression, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57362,8 +60232,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57378,70 +60249,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43344] = 25, - ACTIONS(483), 1, + [44102] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1069), 1, - anon_sym_not, - ACTIONS(1575), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1392), 1, + ACTIONS(924), 1, + anon_sym_not, + STATE(1490), 1, + sym_call, + STATE(1496), 1, + sym_expression, + STATE(1539), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1725), 1, + sym_selector_expression, + STATE(2500), 1, sym_dotted_name, - STATE(2526), 1, - sym_expression, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57449,8 +60321,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57465,70 +60338,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43456] = 25, - ACTIONS(483), 1, + [44217] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1069), 1, - anon_sym_not, - ACTIONS(1575), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1393), 1, + ACTIONS(924), 1, + anon_sym_not, + STATE(1490), 1, + sym_call, + STATE(1518), 1, + sym_expression, + STATE(1539), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1725), 1, + sym_selector_expression, + STATE(2500), 1, sym_dotted_name, - STATE(2526), 1, - sym_expression, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57536,8 +60410,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57552,70 +60427,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43568] = 25, - ACTIONS(483), 1, + [44332] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, + ACTIONS(545), 1, + sym_identifier, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1575), 1, - sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1306), 1, + STATE(1376), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, + sym_selector_expression, + STATE(2456), 1, sym_dotted_name, - STATE(2526), 1, + STATE(2458), 1, sym_expression, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57623,8 +60499,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57639,70 +60516,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43680] = 25, - ACTIONS(483), 1, + [44447] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1603), 1, + ACTIONS(1269), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1475), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1287), 1, + sym_selector_expression, + STATE(2357), 1, sym_dotted_name, - STATE(2509), 1, + STATE(2482), 1, sym_expression, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57710,8 +60588,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57726,70 +60605,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43792] = 25, - ACTIONS(483), 1, + [44562] = 26, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1052), 1, + sym_identifier, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(2007), 1, + STATE(848), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2535), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, + sym_selector_expression, + STATE(1161), 1, sym_expression, - STATE(3210), 1, + STATE(2475), 1, + sym_dotted_name, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57797,8 +60677,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57813,70 +60694,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [43904] = 25, - ACTIONS(483), 1, + [44677] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1067), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(924), 1, anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(2010), 1, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2535), 1, + STATE(1570), 1, sym_expression, - STATE(3210), 1, + STATE(1725), 1, + sym_selector_expression, + STATE(2500), 1, + sym_dotted_name, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57884,8 +60766,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57900,70 +60783,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44016] = 25, - ACTIONS(483), 1, + [44792] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(2011), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2535), 1, + STATE(1287), 1, + sym_selector_expression, + STATE(2408), 1, sym_expression, - STATE(3210), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -57971,8 +60855,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -57987,70 +60872,139 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44128] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [44907] = 5, + ACTIONS(1367), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1411), 25, 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_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(1603), 1, + ACTIONS(1409), 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(1607), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [44980] = 26, + ACTIONS(882), 1, + anon_sym_DOT, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(988), 1, + sym_identifier, + ACTIONS(990), 1, anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(1475), 1, + ACTIONS(1271), 1, + anon_sym_LPAREN, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, + anon_sym_LBRACE, + ACTIONS(1277), 1, + anon_sym_QMARK_DOT, + ACTIONS(1281), 1, + anon_sym_DQUOTE, + ACTIONS(1283), 1, + sym_float, + STATE(1500), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2509), 1, + STATE(1565), 1, + sym_call, + STATE(1771), 1, + sym_selector_expression, + STATE(2334), 1, sym_expression, - STATE(3210), 1, + STATE(2463), 1, + sym_dotted_name, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58058,8 +61012,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58074,70 +61029,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44240] = 25, - ACTIONS(483), 1, + [45095] = 26, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1193), 1, + sym_identifier, + ACTIONS(1195), 1, + anon_sym_not, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(1203), 1, - sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - STATE(1536), 1, + STATE(549), 1, sym_primary_expression, - STATE(1747), 1, + STATE(876), 1, sym_selector_expression, - STATE(2307), 1, + STATE(881), 1, + sym_call, + STATE(1155), 1, sym_expression, - STATE(2489), 1, + STATE(2496), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58145,8 +61101,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58161,70 +61118,139 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44352] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [45210] = 5, + ACTIONS(1367), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 25, 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_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(1413), 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, + [45283] = 26, + 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(1067), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(916), 1, sym_identifier, - ACTIONS(1069), 1, + ACTIONS(924), 1, anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(2014), 1, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2535), 1, + STATE(1605), 1, sym_expression, - STATE(3210), 1, + STATE(1725), 1, + sym_selector_expression, + STATE(2500), 1, + sym_dotted_name, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58232,8 +61258,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58248,70 +61275,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44464] = 25, - ACTIONS(483), 1, + [45398] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1203), 1, - sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - STATE(1536), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1747), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2305), 1, + STATE(2410), 1, sym_expression, - STATE(2489), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58319,8 +61347,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58335,70 +61364,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44576] = 25, - ACTIONS(483), 1, + [45513] = 26, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1084), 1, + anon_sym_not, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1079), 1, - sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1578), 1, - sym_expression, - STATE(1594), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2431), 1, + STATE(1064), 1, + sym_call, + STATE(2028), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58406,8 +61436,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58422,70 +61453,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44688] = 25, - ACTIONS(483), 1, + [45628] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(2015), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1287), 1, + sym_selector_expression, + STATE(2421), 1, sym_dotted_name, - STATE(2535), 1, + STATE(2487), 1, sym_expression, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58493,8 +61525,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58509,157 +61542,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [44800] = 25, - ACTIONS(483), 1, + [45743] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1069), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1603), 1, + ACTIONS(1421), 1, sym_identifier, - STATE(1209), 1, + STATE(1214), 1, sym_selector_expression, - STATE(1487), 1, + STATE(1369), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2509), 1, + STATE(2564), 1, sym_expression, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(1283), 3, + STATE(1322), 2, sym_binary_operator, sym_subscript, - sym_call, - ACTIONS(27), 4, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - STATE(1252), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 5, - sym_integer, - sym_true, - sym_false, - sym_none, - sym_undefined, - STATE(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [44912] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(2016), 1, - sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2535), 1, - sym_expression, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58667,8 +61614,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58683,70 +61631,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45024] = 25, - ACTIONS(483), 1, + [45858] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1067), 1, - sym_identifier, - ACTIONS(1609), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1209), 1, + ACTIONS(1421), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(1951), 1, + STATE(1387), 1, + sym_call, + STATE(1393), 1, sym_primary_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2535), 1, + STATE(2566), 1, sym_expression, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58754,8 +61703,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58770,70 +61720,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45136] = 25, - ACTIONS(483), 1, + [45973] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1603), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1167), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1488), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2509), 1, + STATE(1905), 1, + sym_selector_expression, + STATE(2497), 1, sym_expression, - STATE(3210), 1, + STATE(2501), 1, + sym_dotted_name, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58841,8 +61792,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58857,70 +61809,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45248] = 25, - ACTIONS(483), 1, + [46088] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1067), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_not, - STATE(1209), 1, - sym_selector_expression, - STATE(1951), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2535), 1, + STATE(1704), 1, + sym_selector_expression, + STATE(2348), 1, sym_expression, - STATE(3210), 1, + STATE(2441), 1, + sym_dotted_name, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1527), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -58928,8 +61881,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -58944,70 +61898,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45360] = 25, - ACTIONS(483), 1, + [46203] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1069), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1603), 1, + ACTIONS(1421), 1, sym_identifier, - STATE(1209), 1, + STATE(1214), 1, sym_selector_expression, - STATE(1489), 1, + STATE(1387), 1, + sym_call, + STATE(1390), 1, sym_primary_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2509), 1, + STATE(2564), 1, sym_expression, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59015,8 +61970,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59031,70 +61987,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45472] = 25, - ACTIONS(401), 1, + [46318] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(2465), 1, + STATE(2278), 1, sym_expression, - STATE(3146), 1, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59102,8 +62059,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59118,70 +62076,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45584] = 25, - ACTIONS(401), 1, + [46433] = 26, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(1169), 1, + ACTIONS(1193), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1195), 1, + anon_sym_not, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1235), 1, sym_float, - STATE(1210), 1, + STATE(549), 1, sym_primary_expression, - STATE(1253), 1, + STATE(876), 1, sym_selector_expression, - STATE(2362), 1, + STATE(881), 1, + sym_call, + STATE(1158), 1, sym_expression, - STATE(2454), 1, + STATE(2496), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59189,8 +62148,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59205,70 +62165,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45696] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [46548] = 6, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1297), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 25, + 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_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(1069), 1, + ACTIONS(1413), 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(1603), 1, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1490), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46623] = 26, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1193), 1, + sym_identifier, + ACTIONS(1195), 1, + anon_sym_not, + ACTIONS(1223), 1, + anon_sym_LPAREN, + ACTIONS(1225), 1, + anon_sym_LBRACK, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(1229), 1, + anon_sym_QMARK_DOT, + ACTIONS(1233), 1, + anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + STATE(549), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2509), 1, + STATE(876), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(1151), 1, sym_expression, - STATE(3210), 1, + STATE(2496), 1, + sym_dotted_name, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59276,8 +62306,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59292,70 +62323,213 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45808] = 25, - ACTIONS(401), 1, + [46738] = 8, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1297), 1, + anon_sym_PLUS, + ACTIONS(1415), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 4, anon_sym_DOT, - ACTIONS(411), 1, + anon_sym_as, + anon_sym_if, + anon_sym_or, + ACTIONS(1435), 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(1433), 27, + anon_sym_import, + anon_sym_assert, + 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_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46817] = 8, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1297), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(1415), 12, + sym__dedent, sym_string_start, - ACTIONS(1169), 1, + 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(1435), 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(1413), 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, - ACTIONS(1509), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [46896] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1235), 1, sym_float, - STATE(1210), 1, + STATE(403), 1, sym_primary_expression, - STATE(1253), 1, + STATE(635), 1, + sym_expression, + STATE(868), 1, sym_selector_expression, - STATE(2454), 1, + STATE(881), 1, + sym_call, + STATE(2426), 1, sym_dotted_name, - STATE(2464), 1, - sym_expression, - STATE(3146), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(952), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59363,8 +62537,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59379,70 +62554,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [45920] = 25, - ACTIONS(483), 1, + [47011] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1069), 1, - anon_sym_not, - ACTIONS(1603), 1, - sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1491), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2509), 1, + STATE(1704), 1, + sym_selector_expression, + STATE(2342), 1, sym_expression, - STATE(3210), 1, + STATE(2441), 1, + sym_dotted_name, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59450,8 +62626,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59466,70 +62643,138 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46032] = 25, - ACTIONS(401), 1, + [47126] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(646), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1437), 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(1439), 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(1169), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1509), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [47197] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1235), 1, sym_float, - STATE(1210), 1, + ACTIONS(1429), 1, + sym_identifier, + STATE(668), 1, sym_primary_expression, - STATE(1253), 1, + STATE(862), 1, sym_selector_expression, - STATE(2361), 1, - sym_expression, - STATE(2454), 1, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2559), 1, + sym_expression, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59537,8 +62782,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59553,70 +62799,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46144] = 25, - ACTIONS(483), 1, + [47312] = 6, + ACTIONS(1363), 1, + anon_sym_and, + ACTIONS(1367), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 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(1413), 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, + [47387] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1603), 1, + ACTIONS(1441), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1492), 1, + STATE(832), 1, sym_primary_expression, - STATE(2414), 1, + STATE(859), 1, + sym_selector_expression, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2509), 1, + STATE(2565), 1, sym_expression, - STATE(3210), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59624,8 +62940,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59640,70 +62957,142 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46256] = 25, - ACTIONS(483), 1, + [47502] = 8, + ACTIONS(1363), 1, + anon_sym_and, + ACTIONS(1367), 1, + anon_sym_PLUS, + ACTIONS(1415), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_or, + ACTIONS(1435), 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(1433), 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, + [47581] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1603), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1493), 1, + STATE(669), 1, sym_primary_expression, - STATE(2414), 1, + STATE(862), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2509), 1, + STATE(2559), 1, sym_expression, - STATE(3210), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59711,8 +63100,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59727,70 +63117,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46368] = 25, - ACTIONS(483), 1, + [47696] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1575), 1, - sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1390), 1, + STATE(1190), 1, + sym_expression, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(2414), 1, + STATE(1287), 1, + sym_selector_expression, + STATE(2421), 1, sym_dotted_name, - STATE(2526), 1, - sym_expression, - STATE(3210), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59798,8 +63189,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59814,70 +63206,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46480] = 25, - ACTIONS(483), 1, + [47811] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1575), 1, - sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1391), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2528), 1, + STATE(1287), 1, + sym_selector_expression, + STATE(2256), 1, sym_expression, - STATE(3210), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59885,8 +63278,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59901,59 +63295,60 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46592] = 25, + [47926] = 26, 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(1507), 1, + ACTIONS(1044), 1, sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + STATE(1189), 1, + sym_expression, + STATE(1196), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1200), 1, + sym_call, + STATE(1272), 1, sym_selector_expression, - STATE(2293), 1, + STATE(2468), 1, sym_dotted_name, - STATE(2460), 1, - sym_expression, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1340), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -59964,7 +63359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -59972,8 +63367,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -59988,70 +63384,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46704] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [48041] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1223), 1, + anon_sym_LPAREN, + ACTIONS(1225), 1, + anon_sym_LBRACK, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + ACTIONS(1429), 1, + sym_identifier, + STATE(689), 1, sym_primary_expression, - STATE(1770), 1, + STATE(862), 1, sym_selector_expression, - STATE(2401), 1, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2455), 1, + STATE(2559), 1, sym_expression, - STATE(3016), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60059,8 +63456,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60075,70 +63473,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46816] = 25, - ACTIONS(401), 1, + [48156] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(1507), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1235), 1, sym_float, - STATE(1210), 1, + ACTIONS(1429), 1, + sym_identifier, + STATE(690), 1, sym_primary_expression, - STATE(1253), 1, + STATE(862), 1, sym_selector_expression, - STATE(2292), 1, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2447), 1, + STATE(2559), 1, sym_expression, - STATE(3146), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60146,8 +63545,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60162,70 +63562,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [46928] = 25, - ACTIONS(483), 1, + [48271] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 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(1334), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2425), 1, + STATE(2459), 1, sym_expression, - STATE(2501), 1, + STATE(2514), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60233,8 +63634,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60249,70 +63651,139 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47040] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [48386] = 5, + ACTIONS(1367), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1419), 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(539), 1, + ACTIONS(1417), 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, + [48459] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(1223), 1, + anon_sym_LPAREN, + ACTIONS(1225), 1, + anon_sym_LBRACK, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(1229), 1, + anon_sym_QMARK_DOT, + ACTIONS(1233), 1, + anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + ACTIONS(1429), 1, sym_identifier, - STATE(1408), 1, + STATE(693), 1, sym_primary_expression, - STATE(1592), 1, + STATE(862), 1, sym_selector_expression, - STATE(2411), 1, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2436), 1, + STATE(2559), 1, sym_expression, - STATE(3161), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60320,8 +63791,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60336,70 +63808,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47152] = 25, - ACTIONS(13), 1, + [48574] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, - anon_sym_not, - STATE(1532), 1, - sym_expression, - STATE(1564), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1726), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2277), 1, + sym_expression, + STATE(2456), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1848), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60407,8 +63880,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60423,70 +63897,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47264] = 25, - ACTIONS(886), 1, + [48689] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(1175), 1, - sym_identifier, - ACTIONS(1177), 1, - anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1235), 1, sym_float, - STATE(1511), 1, - sym_expression, - STATE(1575), 1, + ACTIONS(1429), 1, + sym_identifier, + STATE(694), 1, sym_primary_expression, - STATE(1605), 1, + STATE(862), 1, sym_selector_expression, - STATE(2445), 1, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2559), 1, + sym_expression, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60494,8 +63969,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60510,70 +63986,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47376] = 25, - ACTIONS(758), 1, + [48804] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(1750), 1, + STATE(695), 1, sym_primary_expression, - STATE(1853), 1, + STATE(862), 1, sym_selector_expression, - STATE(2472), 1, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2502), 1, + STATE(2559), 1, sym_expression, - STATE(3189), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60581,8 +64058,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60597,70 +64075,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47488] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, + [48919] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(957), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(971), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1471), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(1263), 1, sym_float, - STATE(367), 1, - sym_expression, - STATE(392), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(694), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2462), 1, + STATE(2253), 1, + sym_expression, + STATE(2421), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60668,8 +64147,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60684,70 +64164,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47600] = 25, - ACTIONS(483), 1, + [49034] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1069), 1, - anon_sym_not, - ACTIONS(1603), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1505), 1, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2509), 1, + STATE(1425), 1, sym_expression, - STATE(3210), 1, + STATE(1431), 1, + sym_call, + STATE(1615), 1, + sym_selector_expression, + STATE(2508), 1, + sym_dotted_name, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60755,8 +64236,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60771,70 +64253,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47712] = 25, - ACTIONS(951), 1, + [49149] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(957), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(971), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1137), 1, + ACTIONS(545), 1, sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1471), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(565), 1, sym_float, - STATE(327), 1, + STATE(1376), 1, sym_primary_expression, - STATE(640), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(1134), 1, + STATE(2447), 1, sym_expression, - STATE(2452), 1, + STATE(2456), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(900), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60842,8 +64325,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60858,70 +64342,223 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47824] = 25, - ACTIONS(483), 1, + [49264] = 4, + STATE(806), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1443), 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(1445), 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, + [49335] = 22, + ACTIONS(1371), 1, + anon_sym_LPAREN, + ACTIONS(1373), 1, + anon_sym_LBRACK, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_AMP, + ACTIONS(1393), 1, + anon_sym_CARET, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1453), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1377), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1385), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1387), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1395), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1451), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1319), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1447), 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(1449), 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, + [49442] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1603), 1, + ACTIONS(1429), 1, sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1506), 1, + STATE(718), 1, sym_primary_expression, - STATE(2414), 1, + STATE(862), 1, + sym_selector_expression, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2528), 1, + STATE(2559), 1, sym_expression, - STATE(3210), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -60929,8 +64566,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -60945,70 +64583,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [47936] = 25, - ACTIONS(483), 1, + [49557] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(1203), 1, + ACTIONS(1429), 1, sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - STATE(1536), 1, + STATE(719), 1, sym_primary_expression, - STATE(1747), 1, + STATE(862), 1, sym_selector_expression, - STATE(2308), 1, - sym_expression, - STATE(2489), 1, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2562), 1, + sym_expression, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61016,8 +64655,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -61032,331 +64672,547 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48048] = 25, - ACTIONS(483), 1, + [49672] = 4, + STATE(785), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1461), 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(1459), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(489), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(493), 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(503), 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, + [49743] = 5, + ACTIONS(1467), 1, + anon_sym_EQ, + STATE(626), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1463), 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(1465), 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, + [49816] = 4, + STATE(630), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 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(1469), 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(547), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [49887] = 4, + STATE(634), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1461), 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(1334), 1, - sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2457), 1, - sym_expression, - STATE(2501), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, + ACTIONS(1459), 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, + [49958] = 6, + ACTIONS(1477), 1, + anon_sym_DOT, + ACTIONS(1480), 1, + anon_sym_QMARK_DOT, + STATE(634), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1473), 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_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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1475), 32, + anon_sym_import, + 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(1537), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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, + [50033] = 8, + ACTIONS(1363), 1, + anon_sym_and, + ACTIONS(1367), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [48160] = 25, - ACTIONS(886), 1, - anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(906), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 6, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + ACTIONS(1415), 12, sym_string_start, - ACTIONS(1175), 1, - sym_identifier, - ACTIONS(1177), 1, - anon_sym_not, - ACTIONS(1611), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1613), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, - sym_float, - STATE(1473), 1, - sym_expression, - STATE(1575), 1, - sym_primary_expression, - STATE(1605), 1, - sym_selector_expression, - STATE(2445), 1, - sym_dotted_name, - STATE(3106), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1830), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1619), 3, - anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + sym_float, + ACTIONS(1435), 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(1413), 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, - STATE(1829), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(904), 5, + 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, - STATE(1832), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1835), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [48272] = 25, - ACTIONS(886), 1, - anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(906), 1, + [50112] = 4, + STATE(633), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1471), 26, sym_string_start, - ACTIONS(1175), 1, - sym_identifier, - ACTIONS(1177), 1, - anon_sym_not, - ACTIONS(1611), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1613), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - sym_float, - STATE(1575), 1, - sym_primary_expression, - STATE(1605), 1, - sym_selector_expression, - STATE(2306), 1, - sym_expression, - STATE(2445), 1, - sym_dotted_name, - STATE(3106), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1830), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1619), 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(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1469), 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(1829), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(904), 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(1832), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1835), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [48384] = 25, - ACTIONS(884), 1, + [50183] = 26, + ACTIONS(9), 1, sym_identifier, - ACTIONS(886), 1, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(896), 1, - anon_sym_not, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1611), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, - anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(23), 1, + anon_sym_lambda, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(45), 1, + anon_sym_not, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(53), 1, sym_float, - STATE(1476), 1, - sym_expression, - STATE(1551), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2441), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2518), 1, + sym_expression, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61364,8 +65220,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -61380,70 +65237,73 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48496] = 25, - ACTIONS(483), 1, + [50298] = 27, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1079), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(1483), 1, sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1525), 1, - sym_expression, - STATE(1594), 1, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(1802), 1, + STATE(2003), 1, sym_selector_expression, - STATE(2431), 1, + STATE(2050), 1, + sym_schema_instantiation, + STATE(2399), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2515), 1, + sym_expression, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61451,7 +65311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 15, sym_schema_expr, sym_lambda_expr, sym_quant_expr, @@ -61467,70 +65327,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48608] = 25, - ACTIONS(483), 1, + [50415] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1203), 1, - sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - STATE(1536), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(1747), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2314), 1, - sym_expression, - STATE(2489), 1, + STATE(2441), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2521), 1, + sym_expression, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61538,8 +65399,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -61554,70 +65416,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48720] = 25, - ACTIONS(483), 1, + [50530] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1203), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(1405), 1, sym_identifier, - ACTIONS(1205), 1, + ACTIONS(1485), 1, anon_sym_not, - STATE(1156), 1, - sym_expression, - STATE(1536), 1, + STATE(1490), 1, + sym_call, + STATE(1601), 1, sym_primary_expression, - STATE(1747), 1, + STATE(1769), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2556), 1, + sym_expression, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61625,8 +65488,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -61641,70 +65505,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48832] = 25, - ACTIONS(886), 1, + [50645] = 26, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1175), 1, + ACTIONS(1052), 1, sym_identifier, - ACTIONS(1177), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1249), 1, sym_float, - STATE(1575), 1, + STATE(711), 1, + sym_expression, + STATE(848), 1, sym_primary_expression, - STATE(1605), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2311), 1, - sym_expression, - STATE(2445), 1, + STATE(2475), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61712,8 +65577,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -61728,70 +65594,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [48944] = 25, - ACTIONS(483), 1, + [50760] = 26, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1203), 1, - sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - STATE(1155), 1, - sym_expression, - STATE(1536), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym_call, + STATE(1564), 1, sym_primary_expression, - STATE(1747), 1, + STATE(1704), 1, sym_selector_expression, - STATE(2489), 1, + STATE(2332), 1, + sym_expression, + STATE(2441), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(1893), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61799,8 +65666,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -61815,70 +65683,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49056] = 25, - ACTIONS(483), 1, + [50875] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - STATE(1334), 1, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(940), 1, + anon_sym_not, + STATE(1350), 1, sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2250), 1, + STATE(1374), 1, sym_expression, - STATE(2501), 1, + STATE(1387), 1, + sym_call, + STATE(1463), 1, + sym_selector_expression, + STATE(2431), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61886,8 +65755,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -61902,70 +65772,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49168] = 25, - ACTIONS(886), 1, + [50990] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1069), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1625), 1, - sym_identifier, - STATE(1496), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1689), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2539), 1, + STATE(2281), 1, sym_expression, - STATE(3106), 1, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -61973,8 +65844,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -61989,70 +65861,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49280] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [51105] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1051), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1627), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - STATE(1021), 1, - sym_primary_expression, - STATE(1031), 1, + STATE(1173), 1, sym_expression, - STATE(1051), 1, + STATE(1376), 1, + sym_primary_expression, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2456), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62060,8 +65933,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -62076,70 +65950,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49392] = 25, - ACTIONS(886), 1, + [51220] = 6, + ACTIONS(1491), 1, anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1494), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(646), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1487), 25, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1611), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1613), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + 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(1489), 31, + 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, + [51295] = 26, + 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(1621), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(1625), 1, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1405), 1, sym_identifier, - STATE(1499), 1, + STATE(1490), 1, + sym_call, + STATE(1601), 1, sym_primary_expression, - STATE(1689), 1, + STATE(1769), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2512), 1, + STATE(2556), 1, sym_expression, - STATE(3106), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62147,8 +66091,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -62163,157 +66108,207 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49504] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [51410] = 6, + ACTIONS(1293), 1, + anon_sym_and, + ACTIONS(1297), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1499), 25, + 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, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_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(1079), 1, - sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1497), 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, - STATE(1574), 1, - sym_expression, - STATE(1594), 1, - sym_primary_expression, - STATE(1802), 1, - sym_selector_expression, - STATE(2431), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [51485] = 4, + ACTIONS(1505), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1503), 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_DASH, + 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, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1501), 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, - STATE(1810), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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_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, - STATE(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [49616] = 25, - ACTIONS(886), 1, + [51556] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1625), 1, + ACTIONS(906), 1, sym_identifier, - STATE(1514), 1, - sym_primary_expression, - STATE(1689), 1, + ACTIONS(1507), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(1999), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2512), 1, + STATE(2553), 1, sym_expression, - STATE(3106), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62321,8 +66316,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -62337,70 +66333,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49728] = 25, - ACTIONS(886), 1, + [51671] = 26, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1069), 1, + ACTIONS(1052), 1, + sym_identifier, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1625), 1, - sym_identifier, - STATE(1515), 1, + STATE(722), 1, + sym_expression, + STATE(848), 1, sym_primary_expression, - STATE(1689), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2475), 1, sym_dotted_name, - STATE(2512), 1, - sym_expression, - STATE(3106), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62408,8 +66405,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -62424,70 +66422,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49840] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1093), 1, + [51786] = 26, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(1103), 1, - anon_sym_not, - ACTIONS(1113), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1052), 1, + sym_identifier, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1249), 1, sym_float, - STATE(348), 1, - sym_expression, - STATE(389), 1, + STATE(848), 1, sym_primary_expression, - STATE(702), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2412), 1, + STATE(1150), 1, + sym_expression, + STATE(2475), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62495,8 +66494,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -62511,70 +66511,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [49952] = 25, - ACTIONS(886), 1, + [51901] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1069), 1, + ACTIONS(1028), 1, anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1625), 1, - sym_identifier, - STATE(1518), 1, + STATE(370), 1, sym_primary_expression, - STATE(1689), 1, + STATE(648), 1, + sym_expression, + STATE(870), 1, sym_selector_expression, - STATE(2414), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(2512), 1, - sym_expression, - STATE(3106), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62582,8 +66583,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -62598,70 +66600,156 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50064] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [52016] = 22, + ACTIONS(1323), 1, + anon_sym_LPAREN, + ACTIONS(1325), 1, + anon_sym_LBRACK, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, + anon_sym_QMARK_DOT, + ACTIONS(1341), 1, + anon_sym_PIPE, + ACTIONS(1343), 1, + anon_sym_AMP, + ACTIONS(1345), 1, + anon_sym_CARET, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1453), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1339), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1451), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1319), 5, anon_sym_DOT, - ACTIONS(892), 1, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1511), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1509), 20, + anon_sym_import, + anon_sym_assert, + anon_sym_else, anon_sym_lambda, - ACTIONS(896), 1, + 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, + [52123] = 26, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(906), 1, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(1611), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1235), 1, sym_float, - STATE(1551), 1, + ACTIONS(1429), 1, + sym_identifier, + STATE(554), 1, sym_primary_expression, - STATE(1559), 1, - sym_expression, - STATE(1762), 1, + STATE(862), 1, sym_selector_expression, - STATE(2397), 1, + STATE(881), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2559), 1, + sym_expression, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(976), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62669,8 +66757,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -62685,157 +66774,291 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50176] = 25, - ACTIONS(1041), 1, + [52238] = 22, + ACTIONS(1323), 1, + anon_sym_LPAREN, + ACTIONS(1325), 1, + anon_sym_LBRACK, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, + anon_sym_QMARK_DOT, + ACTIONS(1341), 1, + anon_sym_PIPE, + ACTIONS(1343), 1, + anon_sym_AMP, + ACTIONS(1345), 1, + anon_sym_CARET, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1453), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1339), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1451), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1319), 5, anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1061), 1, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1515), 8, + sym__dedent, sym_string_start, - ACTIONS(1163), 1, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1513), 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, - ACTIONS(1165), 1, - anon_sym_not, - ACTIONS(1627), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [52345] = 5, + ACTIONS(1521), 1, + anon_sym_PIPE, + STATE(657), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1519), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1639), 1, + 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, - STATE(1006), 1, - sym_primary_expression, - STATE(1068), 1, - sym_selector_expression, - STATE(1993), 1, - sym_expression, - STATE(2407), 1, - sym_dotted_name, - STATE(2983), 1, - sym_quant_op, + ACTIONS(1517), 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, + [52418] = 4, + ACTIONS(1528), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1526), 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_DASH, + 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, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1524), 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, - STATE(1080), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1059), 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_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, - STATE(1098), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1071), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [50288] = 25, - ACTIONS(401), 1, + [52489] = 26, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(878), 1, + ACTIONS(1052), 1, sym_identifier, - ACTIONS(880), 1, + ACTIONS(1054), 1, anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1249), 1, sym_float, - STATE(1173), 1, - sym_expression, - STATE(1201), 1, + STATE(848), 1, sym_primary_expression, - STATE(1267), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2400), 1, + STATE(1152), 1, + sym_expression, + STATE(2475), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -62843,8 +67066,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -62859,418 +67083,602 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50400] = 25, - ACTIONS(483), 1, + [52604] = 13, + ACTIONS(1323), 1, + anon_sym_LPAREN, + ACTIONS(1325), 1, + anon_sym_LBRACK, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, + anon_sym_QMARK_DOT, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1339), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 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(1530), 30, + anon_sym_import, anon_sym_DOT, - ACTIONS(489), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(547), 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, + 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, + [52693] = 14, + ACTIONS(1323), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1325), 1, anon_sym_LBRACK, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1339), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 15, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(563), 1, + 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(1203), 1, - sym_identifier, - ACTIONS(1205), 1, + ACTIONS(1530), 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, - STATE(1536), 1, - sym_primary_expression, - STATE(1747), 1, - sym_selector_expression, - STATE(2304), 1, - sym_expression, - STATE(2489), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, + 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, + [52784] = 15, + ACTIONS(1323), 1, + anon_sym_LPAREN, + ACTIONS(1325), 1, + anon_sym_LBRACK, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, + anon_sym_QMARK_DOT, + ACTIONS(1345), 1, + anon_sym_CARET, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1337), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1339), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 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, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1530), 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(1872), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [50512] = 25, - ACTIONS(951), 1, + [52877] = 16, + ACTIONS(1323), 1, + anon_sym_LPAREN, + ACTIONS(1325), 1, + anon_sym_LBRACK, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, + anon_sym_QMARK_DOT, + ACTIONS(1343), 1, + anon_sym_AMP, + ACTIONS(1345), 1, + anon_sym_CARET, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1339), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 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, + sym_float, + ACTIONS(1530), 30, + anon_sym_import, anon_sym_DOT, - ACTIONS(957), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(971), 1, - sym_string_start, - ACTIONS(1069), 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(1471), 1, + 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, + [52972] = 12, + ACTIONS(1323), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(1325), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, - anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(335), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 3, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1339), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 19, + 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_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1530), 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(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [50624] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [53059] = 10, + ACTIONS(1323), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1325), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, - anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(981), 1, - anon_sym_not, - STATE(1416), 1, - sym_primary_expression, - STATE(1427), 1, - sym_expression, - STATE(1543), 1, - sym_selector_expression, - STATE(2404), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1532), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1530), 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(1729), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [50736] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + [53142] = 10, + ACTIONS(1323), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1325), 1, anon_sym_LBRACK, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - STATE(1334), 1, - sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2484), 1, - sym_expression, - STATE(2501), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1532), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1530), 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(1537), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [50848] = 25, - ACTIONS(886), 1, + [53225] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1175), 1, - sym_identifier, - ACTIONS(1177), 1, - anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(565), 1, sym_float, - STATE(1575), 1, - sym_primary_expression, - STATE(1605), 1, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2290), 1, - sym_expression, - STATE(2445), 1, + STATE(1387), 1, + sym_call, + STATE(2001), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2553), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63278,8 +67686,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -63294,244 +67703,217 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [50960] = 25, - ACTIONS(886), 1, - anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1611), 1, + [53340] = 10, + ACTIONS(1371), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1373), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, - anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - sym_float, - ACTIONS(1625), 1, - sym_identifier, - STATE(1519), 1, - sym_primary_expression, - STATE(1689), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2512), 1, - sym_expression, - STATE(3106), 1, - sym_quant_op, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1532), 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, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1530), 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(1932), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(904), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1835), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [51072] = 25, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1627), 1, + [53423] = 10, + ACTIONS(1371), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1373), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, - anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, - anon_sym_DQUOTE, - ACTIONS(1639), 1, - sym_float, - ACTIONS(1643), 1, - sym_identifier, - STATE(1035), 1, - sym_primary_expression, - STATE(1062), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2513), 1, - sym_expression, - STATE(2983), 1, - sym_quant_op, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1532), 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, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1530), 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(1084), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1059), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1071), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [51184] = 25, - ACTIONS(886), 1, + [53506] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1625), 1, + ACTIONS(1441), 1, sym_identifier, - STATE(1520), 1, + STATE(654), 1, sym_primary_expression, - STATE(1689), 1, + STATE(859), 1, sym_selector_expression, - STATE(2414), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2512), 1, + STATE(2547), 1, sym_expression, - STATE(3106), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63539,8 +67921,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -63555,70 +67938,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51296] = 25, - ACTIONS(886), 1, + [53621] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1625), 1, + ACTIONS(1441), 1, sym_identifier, - STATE(1523), 1, + STATE(656), 1, sym_primary_expression, - STATE(1689), 1, + STATE(859), 1, sym_selector_expression, - STATE(2414), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2512), 1, + STATE(2565), 1, sym_expression, - STATE(3106), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63626,8 +68010,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -63642,70 +68027,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51408] = 25, - ACTIONS(886), 1, + [53736] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1069), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1625), 1, + ACTIONS(1407), 1, sym_identifier, - STATE(1524), 1, + STATE(1185), 1, sym_primary_expression, - STATE(1689), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2512), 1, + STATE(2568), 1, sym_expression, - STATE(3106), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(1389), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63713,8 +68099,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -63729,70 +68116,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51520] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [53851] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(906), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1611), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(565), 1, sym_float, - STATE(1483), 1, + STATE(1167), 1, sym_expression, - STATE(1551), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2456), 1, sym_dotted_name, - STATE(3106), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63800,8 +68188,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -63816,70 +68205,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51632] = 25, - ACTIONS(483), 1, + [53966] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1013), 1, + ACTIONS(1407), 1, sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1381), 1, - sym_expression, - STATE(1387), 1, + STATE(1184), 1, sym_primary_expression, - STATE(1399), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(2496), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2567), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1526), 4, + STATE(1389), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -63887,8 +68277,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -63903,157 +68294,223 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51744] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + [54081] = 22, + ACTIONS(1323), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1325), 1, anon_sym_LBRACK, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - sym_float, - STATE(1334), 1, - sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2255), 1, - sym_expression, - STATE(2501), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, + ACTIONS(1341), 1, + anon_sym_PIPE, + ACTIONS(1343), 1, + anon_sym_AMP, + ACTIONS(1345), 1, + anon_sym_CARET, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1453), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1337), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1339), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1451), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1319), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1447), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + sym_float, + ACTIONS(1449), 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, - STATE(1537), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 5, + 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, - STATE(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [51856] = 25, - ACTIONS(483), 1, + [54188] = 4, + ACTIONS(1538), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 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(1534), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(489), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(493), 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(503), 1, - sym_string_start, - ACTIONS(545), 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, - ACTIONS(547), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [54259] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1249), 1, sym_float, - STATE(1156), 1, - sym_expression, - STATE(1334), 1, + ACTIONS(1441), 1, + sym_identifier, + STATE(660), 1, sym_primary_expression, - STATE(1456), 1, + STATE(859), 1, sym_selector_expression, - STATE(2501), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2565), 1, + sym_expression, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64061,8 +68518,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -64077,70 +68535,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [51968] = 25, - ACTIONS(886), 1, + [54374] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1175), 1, - sym_identifier, - ACTIONS(1177), 1, - anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1249), 1, sym_float, - STATE(1575), 1, + ACTIONS(1441), 1, + sym_identifier, + STATE(661), 1, sym_primary_expression, - STATE(1605), 1, + STATE(859), 1, sym_selector_expression, - STATE(2315), 1, - sym_expression, - STATE(2445), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2565), 1, + sym_expression, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64148,8 +68607,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -64164,70 +68624,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52080] = 25, - ACTIONS(758), 1, + [54489] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, + ACTIONS(1441), 1, sym_identifier, - ACTIONS(1003), 1, - anon_sym_not, - STATE(1618), 1, + STATE(662), 1, sym_primary_expression, - STATE(1619), 1, - sym_expression, - STATE(1854), 1, + STATE(859), 1, sym_selector_expression, - STATE(2413), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2565), 1, + sym_expression, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1975), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64235,8 +68696,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -64251,70 +68713,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52192] = 25, - ACTIONS(886), 1, + [54604] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1175), 1, - sym_identifier, - ACTIONS(1177), 1, - anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1249), 1, sym_float, - STATE(1575), 1, + ACTIONS(1441), 1, + sym_identifier, + STATE(663), 1, sym_primary_expression, - STATE(1605), 1, + STATE(859), 1, sym_selector_expression, - STATE(2317), 1, - sym_expression, - STATE(2445), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2565), 1, + sym_expression, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64322,8 +68785,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -64338,136 +68802,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52304] = 4, - STATE(1102), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1599), 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(1601), 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, + [54719] = 26, + ACTIONS(908), 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, - [52374] = 25, - ACTIONS(886), 1, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1611), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1625), 1, + ACTIONS(1441), 1, sym_identifier, - ACTIONS(1645), 1, - anon_sym_not, - STATE(1540), 1, + STATE(664), 1, sym_primary_expression, - STATE(1689), 1, + STATE(859), 1, sym_selector_expression, - STATE(2414), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2512), 1, + STATE(2565), 1, sym_expression, - STATE(3106), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64475,8 +68874,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -64491,70 +68891,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52486] = 25, - ACTIONS(886), 1, + [54834] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1625), 1, + ACTIONS(1441), 1, sym_identifier, - STATE(1540), 1, + STATE(665), 1, sym_primary_expression, - STATE(1689), 1, + STATE(859), 1, sym_selector_expression, - STATE(2414), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2512), 1, + STATE(2565), 1, sym_expression, - STATE(3106), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64562,8 +68963,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -64578,70 +68980,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52598] = 25, - ACTIONS(1041), 1, + [54949] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1165), 1, - anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(1249), 1, sym_float, - STATE(1006), 1, + ACTIONS(1441), 1, + sym_identifier, + STATE(666), 1, sym_primary_expression, - STATE(1068), 1, + STATE(859), 1, sym_selector_expression, - STATE(1986), 1, - sym_expression, - STATE(2407), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2565), 1, + sym_expression, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64649,8 +69052,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -64665,135 +69069,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52710] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1595), 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(1597), 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, + [55064] = 26, + ACTIONS(1016), 1, sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [52778] = 25, - ACTIONS(483), 1, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1028), 1, + anon_sym_not, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1603), 1, - sym_identifier, - STATE(1209), 1, - sym_selector_expression, - STATE(1590), 1, + STATE(370), 1, sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2509), 1, + STATE(603), 1, sym_expression, - STATE(3210), 1, + STATE(870), 1, + sym_selector_expression, + STATE(871), 1, + sym_call, + STATE(2529), 1, + sym_dotted_name, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1252), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64801,8 +69141,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -64817,70 +69158,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [52890] = 25, - ACTIONS(483), 1, + [55179] = 26, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1052), 1, + sym_identifier, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1013), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1351), 1, - sym_expression, - STATE(1387), 1, + STATE(848), 1, sym_primary_expression, - STATE(1399), 1, + STATE(871), 1, + sym_call, + STATE(887), 1, sym_selector_expression, - STATE(2496), 1, + STATE(1157), 1, + sym_expression, + STATE(2475), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1526), 4, + STATE(919), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -64888,8 +69230,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -64904,265 +69247,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53002] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1591), 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(1593), 33, - anon_sym_import, + [55294] = 26, + ACTIONS(1018), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_EQ, + ACTIONS(1024), 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, - [53070] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1587), 26, - sym__dedent, + ACTIONS(1038), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(1052), 1, + sym_identifier, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1237), 1, anon_sym_LPAREN, + ACTIONS(1239), 1, anon_sym_LBRACK, + ACTIONS(1241), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(1247), 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(1249), 1, sym_float, - ACTIONS(1589), 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, - [53138] = 3, + STATE(848), 1, + sym_primary_expression, + STATE(871), 1, + sym_call, + STATE(887), 1, + sym_selector_expression, + STATE(1149), 1, + sym_expression, + STATE(2475), 1, + sym_dotted_name, + STATE(2974), 1, + sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 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(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1245), 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(1585), 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, + 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(919), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1036), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [53206] = 25, - ACTIONS(13), 1, + STATE(909), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(928), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [55409] = 26, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1237), 1, + anon_sym_LPAREN, + ACTIONS(1239), 1, + anon_sym_LBRACK, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1537), 1, + ACTIONS(1441), 1, sym_identifier, - STATE(1602), 1, + ACTIONS(1540), 1, + anon_sym_not, + STATE(675), 1, sym_primary_expression, - STATE(1768), 1, + STATE(859), 1, sym_selector_expression, - STATE(2414), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2527), 1, + STATE(2565), 1, sym_expression, - STATE(3016), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1896), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65170,8 +69408,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -65186,70 +69425,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53318] = 25, - ACTIONS(1069), 1, + [55524] = 26, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1093), 1, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1563), 1, + ACTIONS(1441), 1, sym_identifier, - STATE(346), 1, + STATE(675), 1, sym_primary_expression, - STATE(781), 1, + STATE(859), 1, sym_selector_expression, - STATE(2414), 1, + STATE(871), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2538), 1, + STATE(2565), 1, sym_expression, - STATE(3059), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(913), 4, + STATE(904), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65257,8 +69497,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -65273,52 +69514,142 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53430] = 3, + [55639] = 12, + ACTIONS(1371), 1, + anon_sym_LPAREN, + ACTIONS(1373), 1, + anon_sym_LBRACK, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, + anon_sym_QMARK_DOT, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 26, - sym__dedent, + ACTIONS(1377), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1387), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 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(1530), 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, + [55726] = 16, + ACTIONS(1371), 1, anon_sym_LPAREN, + ACTIONS(1373), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1379), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1381), 1, anon_sym_QMARK_DOT, + ACTIONS(1391), 1, + anon_sym_AMP, + ACTIONS(1393), 1, + anon_sym_CARET, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1377), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1385), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1387), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1395), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 13, + sym_string_start, + ts_builtin_sym_end, + 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, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1581), 33, + ACTIONS(1530), 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, @@ -65328,7 +69659,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, @@ -65338,70 +69668,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [53498] = 25, - ACTIONS(1041), 1, + [55821] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1643), 1, + ACTIONS(906), 1, sym_identifier, - STATE(1014), 1, - sym_primary_expression, - STATE(1062), 1, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(1968), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2513), 1, + STATE(2553), 1, sym_expression, - STATE(2983), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65409,8 +69740,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -65425,70 +69757,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53610] = 25, - ACTIONS(1093), 1, + [55936] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(1195), 1, - anon_sym_not, - ACTIONS(1227), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(565), 1, sym_float, - STATE(347), 1, - sym_primary_expression, - STATE(554), 1, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(1140), 1, - sym_expression, - STATE(2467), 1, + STATE(1387), 1, + sym_call, + STATE(1970), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2553), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65496,8 +69829,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -65512,157 +69846,302 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53722] = 25, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [56051] = 15, + ACTIONS(1371), 1, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1373), 1, + anon_sym_LBRACK, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1393), 1, + anon_sym_CARET, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1377), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1385), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1387), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1395), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_DQUOTE, - ACTIONS(53), 1, + 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(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1537), 1, + ACTIONS(1530), 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(1647), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [56144] = 14, + ACTIONS(1371), 1, + anon_sym_LPAREN, + ACTIONS(1373), 1, + anon_sym_LBRACK, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, + anon_sym_QMARK_DOT, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1377), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1385), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1387), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1395), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + 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(1530), 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, - STATE(1602), 1, - sym_primary_expression, - STATE(1768), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2527), 1, - sym_expression, - STATE(3016), 1, - sym_quant_op, + 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, + [56235] = 13, + ACTIONS(1371), 1, + anon_sym_LPAREN, + ACTIONS(1373), 1, + anon_sym_LBRACK, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, + anon_sym_QMARK_DOT, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1377), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1385), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1387), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 17, + sym_string_start, + ts_builtin_sym_end, + 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, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + ACTIONS(1530), 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(1896), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [53834] = 25, - ACTIONS(13), 1, + [56324] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1649), 1, - sym_identifier, - STATE(1569), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1967), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2359), 1, - sym_dotted_name, - STATE(2402), 1, + STATE(2418), 1, sym_expression, - STATE(3016), 1, + STATE(2456), 1, + sym_dotted_name, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65670,8 +70149,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -65686,70 +70166,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [53946] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [56439] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1582), 1, + sym_expression, + STATE(1592), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1649), 1, sym_selector_expression, - STATE(2401), 1, + STATE(1765), 1, + sym_call, + STATE(2492), 1, sym_dotted_name, - STATE(2438), 1, - sym_expression, - STATE(3016), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65757,8 +70238,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -65773,70 +70255,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54058] = 25, - ACTIONS(886), 1, + [56554] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1625), 1, + ACTIONS(906), 1, sym_identifier, - STATE(1562), 1, - sym_primary_expression, - STATE(1689), 1, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(1972), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2512), 1, + STATE(2553), 1, sym_expression, - STATE(3106), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1932), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65844,8 +70327,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -65860,70 +70344,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54170] = 25, - ACTIONS(886), 1, + [56669] = 26, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(906), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(1175), 1, + ACTIONS(1193), 1, sym_identifier, - ACTIONS(1177), 1, + ACTIONS(1195), 1, anon_sym_not, - ACTIONS(1611), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1235), 1, sym_float, - STATE(1575), 1, + STATE(549), 1, sym_primary_expression, - STATE(1605), 1, + STATE(876), 1, sym_selector_expression, - STATE(2333), 1, + STATE(881), 1, + sym_call, + STATE(1146), 1, sym_expression, - STATE(2445), 1, + STATE(2496), 1, sym_dotted_name, - STATE(3106), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1829), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -65931,8 +70416,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -65947,70 +70433,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54282] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [56784] = 26, + 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(908), 1, + anon_sym_not, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + ACTIONS(1407), 1, + sym_identifier, + STATE(1183), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(2296), 1, - sym_expression, - STATE(2401), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3016), 1, + STATE(2567), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1389), 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(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66018,8 +70505,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66034,70 +70522,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54394] = 25, - ACTIONS(1093), 1, + [56899] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1113), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1193), 1, - sym_identifier, - ACTIONS(1195), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1227), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1263), 1, sym_float, - STATE(347), 1, + ACTIONS(1407), 1, + sym_identifier, + STATE(1182), 1, sym_primary_expression, - STATE(554), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(1146), 1, - sym_expression, - STATE(2467), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2567), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(908), 4, + STATE(1389), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66105,8 +70594,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66121,70 +70611,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54506] = 25, - ACTIONS(1041), 1, + [57014] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1627), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1643), 1, + ACTIONS(906), 1, sym_identifier, - ACTIONS(1651), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1014), 1, - sym_primary_expression, - STATE(1062), 1, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(1974), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2513), 1, + STATE(2553), 1, sym_expression, - STATE(2983), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66192,8 +70683,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66208,70 +70700,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54618] = 25, - ACTIONS(1041), 1, + [57129] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1165), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(1263), 1, sym_float, - STATE(1006), 1, + ACTIONS(1407), 1, + sym_identifier, + STATE(1181), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(1960), 1, - sym_expression, - STATE(2407), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2567), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(1389), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66279,8 +70772,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66295,70 +70789,138 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54730] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [57244] = 4, + STATE(798), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1544), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(43), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(53), 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(55), 1, + ACTIONS(1542), 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, + [57315] = 26, + ACTIONS(401), 1, + anon_sym_DOT, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(431), 1, sym_string_start, - ACTIONS(184), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, anon_sym_LBRACK, - STATE(1569), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_QMARK_DOT, + ACTIONS(1261), 1, + anon_sym_DQUOTE, + ACTIONS(1263), 1, + sym_float, + ACTIONS(1407), 1, + sym_identifier, + STATE(1180), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(2297), 1, - sym_expression, - STATE(2401), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3016), 1, + STATE(2567), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1389), 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(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66366,8 +70928,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66382,70 +70945,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54842] = 25, - ACTIONS(1041), 1, + [57430] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1165), 1, - anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - STATE(1006), 1, - sym_primary_expression, - STATE(1068), 1, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(1959), 1, - sym_expression, - STATE(2407), 1, + STATE(1387), 1, + sym_call, + STATE(1978), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2553), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66453,8 +71017,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66469,70 +71034,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [54954] = 25, - ACTIONS(483), 1, + [57545] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - STATE(1155), 1, - sym_expression, - STATE(1334), 1, + ACTIONS(1407), 1, + sym_identifier, + STATE(1179), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(2501), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2567), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1389), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66540,8 +71106,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66556,70 +71123,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55066] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [57660] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1627), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - STATE(1015), 1, - sym_expression, - STATE(1021), 1, - sym_primary_expression, - STATE(1051), 1, + ACTIONS(906), 1, + sym_identifier, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2448), 1, + STATE(1387), 1, + sym_call, + STATE(1986), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2553), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66627,8 +71195,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66643,59 +71212,60 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55178] = 25, + [57775] = 26, 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(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1164), 1, - sym_expression, - STATE(1210), 1, + ACTIONS(1407), 1, + sym_identifier, + STATE(1178), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(2454), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2567), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1389), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -66706,7 +71276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66714,8 +71284,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66730,70 +71301,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55290] = 25, - ACTIONS(1041), 1, + [57890] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1069), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1643), 1, + ACTIONS(1407), 1, sym_identifier, - STATE(1036), 1, + STATE(1177), 1, sym_primary_expression, - STATE(1062), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2513), 1, + STATE(2567), 1, sym_expression, - STATE(2983), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1389), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66801,8 +71373,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66817,70 +71390,138 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55402] = 25, - ACTIONS(1041), 1, + [58005] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1548), 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(1546), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(1047), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1069), 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(1627), 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, + [58076] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1643), 1, + ACTIONS(906), 1, sym_identifier, - STATE(1008), 1, - sym_primary_expression, - STATE(1062), 1, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(1990), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2513), 1, + STATE(2553), 1, sym_expression, - STATE(2983), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -66888,8 +71529,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -66904,157 +71546,205 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55514] = 25, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1061), 1, + [58191] = 4, + STATE(626), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1519), 26, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1627), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1639), 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(1643), 1, + ACTIONS(1517), 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, - STATE(1010), 1, - sym_primary_expression, - STATE(1062), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2513), 1, - sym_expression, - STATE(2983), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [58262] = 4, + STATE(798), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1552), 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(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1550), 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(1084), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1059), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1071), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [55626] = 25, - ACTIONS(13), 1, + [58333] = 26, + 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(1044), 1, + sym_identifier, + ACTIONS(1046), 1, + anon_sym_not, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, - anon_sym_not, - STATE(1478), 1, + STATE(1194), 1, sym_expression, - STATE(1564), 1, + STATE(1196), 1, sym_primary_expression, - STATE(1726), 1, + STATE(1200), 1, + sym_call, + STATE(1272), 1, sym_selector_expression, - STATE(2470), 1, + STATE(2468), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1848), 4, + STATE(1340), 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(1849), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67062,8 +71752,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -67078,70 +71769,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55738] = 25, - ACTIONS(1041), 1, + [58448] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1069), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1643), 1, - sym_identifier, - STATE(1011), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1062), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2513), 1, + STATE(2242), 1, sym_expression, - STATE(2983), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67149,8 +71841,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -67165,70 +71858,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55850] = 25, - ACTIONS(13), 1, + [58563] = 26, + 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(1215), 1, + sym_identifier, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1537), 1, - sym_identifier, - STATE(1552), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1768), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2527), 1, + STATE(2257), 1, sym_expression, - STATE(3016), 1, + STATE(2421), 1, + sym_dotted_name, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1896), 4, + STATE(1408), 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(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67236,8 +71930,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -67252,331 +71947,308 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [55962] = 25, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1627), 1, + [58678] = 22, + ACTIONS(1371), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1373), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, - anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, - anon_sym_DQUOTE, - ACTIONS(1639), 1, - sym_float, - ACTIONS(1643), 1, - sym_identifier, - STATE(1012), 1, - sym_primary_expression, - STATE(1062), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2513), 1, - sym_expression, - STATE(2983), 1, - sym_quant_op, + ACTIONS(1389), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_AMP, + ACTIONS(1393), 1, + anon_sym_CARET, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1453), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1377), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1385), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1387), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1395), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1451), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1319), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1515), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + sym_float, + ACTIONS(1513), 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, - STATE(1084), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1059), 5, + 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, - STATE(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1071), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [56074] = 25, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [58785] = 22, + ACTIONS(1371), 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(184), 1, + ACTIONS(1373), 1, anon_sym_LBRACK, - ACTIONS(1069), 1, + ACTIONS(1379), 1, + anon_sym_STAR_STAR, + ACTIONS(1381), 1, + anon_sym_QMARK_DOT, + ACTIONS(1389), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_AMP, + ACTIONS(1393), 1, + anon_sym_CARET, + ACTIONS(1401), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1453), 1, anon_sym_not, - ACTIONS(1537), 1, - sym_identifier, - STATE(1561), 1, - sym_primary_expression, - STATE(1768), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2527), 1, - sym_expression, - STATE(3016), 1, - sym_quant_op, + ACTIONS(1457), 1, + anon_sym_is, + STATE(937), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1377), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1385), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1387), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1395), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1451), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1319), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1511), 8, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + sym_float, + ACTIONS(1509), 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, - STATE(1896), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 5, + 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, - STATE(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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, + [58892] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [56186] = 25, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(1556), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(43), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(49), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1537), 1, - sym_identifier, - STATE(1573), 1, - sym_primary_expression, - STATE(1768), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2527), 1, - sym_expression, - STATE(3016), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 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(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1554), 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(1896), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [56298] = 25, - ACTIONS(401), 1, + [58963] = 26, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, + ACTIONS(1084), 1, anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(1208), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1033), 1, + sym_expression, + STATE(1063), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1064), 1, + sym_call, + STATE(2439), 1, sym_dotted_name, - STATE(2524), 1, - sym_expression, - STATE(3146), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67584,8 +72256,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -67600,70 +72273,138 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56410] = 25, - ACTIONS(401), 1, + [59078] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1556), 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(1554), 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(1169), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, sym_identifier, - ACTIONS(1509), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59149] = 26, + ACTIONS(1139), 1, + sym_identifier, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1151), 1, + anon_sym_not, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, - sym_float, - STATE(1168), 1, - sym_expression, - STATE(1210), 1, + ACTIONS(1235), 1, + sym_float, + STATE(403), 1, sym_primary_expression, - STATE(1253), 1, + STATE(731), 1, + sym_expression, + STATE(868), 1, sym_selector_expression, - STATE(2454), 1, + STATE(881), 1, + sym_call, + STATE(2426), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(952), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67671,8 +72412,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -67687,59 +72429,60 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56522] = 25, + [59264] = 26, 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(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1210), 1, + ACTIONS(1407), 1, + sym_identifier, + ACTIONS(1558), 1, + anon_sym_not, + STATE(1195), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(2222), 1, - sym_expression, - STATE(2454), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2567), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1389), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -67750,7 +72493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67758,8 +72501,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -67774,70 +72518,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56634] = 25, - ACTIONS(13), 1, + [59379] = 26, + 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(908), 1, + anon_sym_not, + ACTIONS(1251), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1537), 1, + ACTIONS(1407), 1, sym_identifier, - STATE(1572), 1, + STATE(1195), 1, sym_primary_expression, - STATE(1768), 1, + STATE(1200), 1, + sym_call, + STATE(1308), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2527), 1, + STATE(2567), 1, sym_expression, - STATE(3016), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1896), 4, + STATE(1389), 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(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67845,8 +72590,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -67861,70 +72607,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56746] = 25, - ACTIONS(13), 1, + [59494] = 26, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1193), 1, + sym_identifier, + ACTIONS(1195), 1, + anon_sym_not, + ACTIONS(1223), 1, + anon_sym_LPAREN, + ACTIONS(1225), 1, + anon_sym_LBRACK, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(1235), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1537), 1, - sym_identifier, - STATE(1600), 1, + STATE(549), 1, sym_primary_expression, - STATE(1768), 1, + STATE(876), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2527), 1, + STATE(881), 1, + sym_call, + STATE(1156), 1, sym_expression, - STATE(3016), 1, + STATE(2496), 1, + sym_dotted_name, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1896), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -67932,8 +72679,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -67948,70 +72696,138 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56858] = 25, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [59609] = 4, + STATE(798), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1503), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(43), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(53), 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(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1069), 1, + ACTIONS(1501), 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(1537), 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, + [59680] = 26, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1147), 1, + anon_sym_lambda, + ACTIONS(1161), 1, + sym_string_start, + ACTIONS(1193), 1, sym_identifier, - STATE(1593), 1, + ACTIONS(1195), 1, + anon_sym_not, + ACTIONS(1223), 1, + anon_sym_LPAREN, + ACTIONS(1225), 1, + anon_sym_LBRACK, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(1229), 1, + anon_sym_QMARK_DOT, + ACTIONS(1233), 1, + anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_float, + STATE(549), 1, sym_primary_expression, - STATE(1768), 1, + STATE(732), 1, + sym_expression, + STATE(876), 1, sym_selector_expression, - STATE(2414), 1, + STATE(881), 1, + sym_call, + STATE(2496), 1, sym_dotted_name, - STATE(2527), 1, - sym_expression, - STATE(3016), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1896), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68019,8 +72835,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -68035,244 +72852,341 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [56970] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [59795] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1560), 26, + 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_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(690), 1, + ACTIONS(1562), 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(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(2497), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [59866] = 4, + STATE(626), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1503), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1501), 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(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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, + [59937] = 6, + ACTIONS(1363), 1, + anon_sym_and, + ACTIONS(1367), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, sym_select_suffix, - sym_attribute, - sym_optional_attribute, - sym_optional_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [57082] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + aux_sym_selector_expression_repeat1, + ACTIONS(1499), 25, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, anon_sym_DQUOTE, - ACTIONS(1521), 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(1210), 1, - sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2231), 1, - sym_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(3146), 1, - sym_quant_op, + ACTIONS(1497), 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, + [60012] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1517), 3, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1556), 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(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1554), 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(1371), 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(1376), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1377), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [57194] = 25, - ACTIONS(401), 1, + [60083] = 26, + ACTIONS(1141), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1147), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(878), 1, + ACTIONS(1193), 1, sym_identifier, - ACTIONS(880), 1, + ACTIONS(1195), 1, anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1229), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1233), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1235), 1, sym_float, - STATE(1166), 1, - sym_expression, - STATE(1201), 1, + STATE(549), 1, sym_primary_expression, - STATE(1267), 1, + STATE(742), 1, + sym_expression, + STATE(876), 1, sym_selector_expression, - STATE(2400), 1, + STATE(881), 1, + sym_call, + STATE(2496), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3059), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(905), 2, + sym_binary_operator, + sym_subscript, + STATE(906), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1231), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(911), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1159), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(977), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68280,8 +73194,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(979), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -68296,70 +73211,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57306] = 25, - ACTIONS(1041), 1, + [60198] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(1643), 1, + ACTIONS(938), 1, sym_identifier, - STATE(1016), 1, + ACTIONS(940), 1, + anon_sym_not, + STATE(1350), 1, sym_primary_expression, - STATE(1062), 1, + STATE(1387), 1, + sym_call, + STATE(1391), 1, + sym_expression, + STATE(1463), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2431), 1, sym_dotted_name, - STATE(2513), 1, - sym_expression, - STATE(2983), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1593), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68367,8 +73283,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -68383,157 +73300,138 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57418] = 25, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1061), 1, + [60313] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1560), 26, + sym__dedent, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1627), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, - anon_sym_DQUOTE, - ACTIONS(1639), 1, - sym_float, - ACTIONS(1643), 1, - sym_identifier, - STATE(1018), 1, - sym_primary_expression, - STATE(1062), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2513), 1, - sym_expression, - STATE(2983), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1635), 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(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1562), 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(1084), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1059), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1071), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [57530] = 25, - ACTIONS(401), 1, + [60384] = 26, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(419), 1, + ACTIONS(1084), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1315), 1, sym_float, - STATE(1210), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2228), 1, + STATE(1051), 1, sym_expression, - STATE(2454), 1, + STATE(1063), 1, + sym_selector_expression, + STATE(1064), 1, + sym_call, + STATE(2439), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68541,8 +73439,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -68557,70 +73456,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57642] = 25, - ACTIONS(507), 1, + [60499] = 26, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1084), 1, + anon_sym_not, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1505), 1, - sym_identifier, - STATE(1420), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1577), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, + STATE(1064), 1, + sym_call, + STATE(2006), 1, sym_expression, - STATE(3161), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1659), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68628,8 +73528,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -68644,70 +73545,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57754] = 25, - ACTIONS(507), 1, + [60614] = 26, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, + STATE(1038), 1, + sym_expression, + STATE(1054), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1059), 1, sym_selector_expression, - STATE(2281), 1, - sym_expression, - STATE(2411), 1, + STATE(1064), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1092), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68715,8 +73617,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -68731,157 +73634,205 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [57866] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(961), 1, - anon_sym_not, - ACTIONS(971), 1, + [60729] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1556), 26, sym_string_start, - ACTIONS(1471), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1483), 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(387), 1, - sym_expression, - STATE(392), 1, - sym_primary_expression, - STATE(694), 1, - sym_selector_expression, - STATE(2462), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, + ACTIONS(1554), 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, + [60800] = 4, + STATE(626), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 3, + ACTIONS(1552), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1550), 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(969), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [57978] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [60871] = 26, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1061), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1627), 1, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(1315), 1, sym_float, - STATE(1021), 1, - sym_primary_expression, - STATE(1023), 1, + STATE(1047), 1, sym_expression, - STATE(1051), 1, + STATE(1054), 1, + sym_primary_expression, + STATE(1059), 1, sym_selector_expression, - STATE(2448), 1, + STATE(1064), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1092), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -68889,8 +73840,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -68905,15 +73857,16 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58090] = 4, - STATE(865), 1, - aux_sym_comparison_operator_repeat1, + [60986] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, - sym__dedent, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1548), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -68938,7 +73891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 32, + ACTIONS(1546), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -68951,31 +73904,122 @@ 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, - 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, + 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, + [61057] = 26, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1024), 1, + anon_sym_lambda, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1052), 1, + sym_identifier, + ACTIONS(1054), 1, + anon_sym_not, + ACTIONS(1237), 1, + anon_sym_LPAREN, + ACTIONS(1239), 1, + anon_sym_LBRACK, + ACTIONS(1241), 1, + anon_sym_LBRACE, + ACTIONS(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1247), 1, + anon_sym_DQUOTE, + ACTIONS(1249), 1, + sym_float, + STATE(848), 1, + sym_primary_expression, + STATE(871), 1, + sym_call, + STATE(887), 1, + sym_selector_expression, + STATE(1147), 1, + sym_expression, + STATE(2475), 1, + sym_dotted_name, + STATE(2974), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, + sym_in_operation, + sym_not_in_operation, + ACTIONS(1245), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(919), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1036), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [58160] = 3, + STATE(909), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(928), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [61172] = 4, + STATE(798), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1569), 26, + ACTIONS(1519), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -69002,7 +74046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1571), 33, + ACTIONS(1517), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -69036,70 +74080,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [58228] = 25, - ACTIONS(401), 1, + [61243] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1265), 1, sym_identifier, - STATE(1162), 1, + STATE(1641), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1682), 1, + sym_call, + STATE(1921), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2532), 1, + STATE(2533), 1, sym_expression, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69107,8 +74152,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69123,70 +74169,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58340] = 25, - ACTIONS(483), 1, + [61358] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(449), 1, + anon_sym_not, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, + ACTIONS(545), 1, + sym_identifier, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1079), 1, - sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1594), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1601), 1, - sym_expression, - STATE(1802), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2431), 1, + STATE(2453), 1, + sym_expression, + STATE(2456), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69194,8 +74241,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69210,157 +74258,138 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58452] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, + [61473] = 4, + STATE(626), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1544), 26, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1509), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, - anon_sym_DQUOTE, - ACTIONS(1521), 1, - sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(1180), 1, - sym_primary_expression, - STATE(1237), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2524), 1, - sym_expression, - STATE(3146), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1517), 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(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1542), 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(1324), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1377), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [58564] = 25, - ACTIONS(401), 1, + [61544] = 26, + ACTIONS(1016), 1, + sym_identifier, + ACTIONS(1018), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1024), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, + ACTIONS(1028), 1, anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(1038), 1, + sym_string_start, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1239), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1241), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1243), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1247), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1249), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(1183), 1, + STATE(370), 1, sym_primary_expression, - STATE(1237), 1, + STATE(544), 1, + sym_expression, + STATE(870), 1, sym_selector_expression, - STATE(2414), 1, + STATE(871), 1, + sym_call, + STATE(2529), 1, sym_dotted_name, - STATE(2524), 1, - sym_expression, - STATE(3146), 1, + STATE(2974), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(916), 2, + sym_binary_operator, + sym_subscript, + STATE(917), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1245), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(902), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1036), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(909), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69368,8 +74397,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(928), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69384,70 +74414,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58676] = 25, - ACTIONS(401), 1, + [61659] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1167), 1, sym_identifier, - STATE(1184), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2524), 1, + STATE(2455), 1, sym_expression, - STATE(3146), 1, + STATE(2501), 1, + sym_dotted_name, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69455,8 +74486,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69471,70 +74503,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58788] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1093), 1, + [61774] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(1099), 1, - anon_sym_lambda, - ACTIONS(1103), 1, - anon_sym_not, - ACTIONS(1113), 1, - sym_string_start, - ACTIONS(1227), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(537), 1, sym_float, - STATE(383), 1, - sym_expression, - STATE(389), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(702), 1, + STATE(1431), 1, + sym_call, + STATE(1432), 1, + sym_expression, + STATE(1559), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2514), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69542,8 +74575,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69558,73 +74592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [58900] = 4, - STATE(869), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1599), 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(1601), 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, - [58970] = 25, + [61889] = 26, ACTIONS(13), 1, anon_sym_DOT, ACTIONS(19), 1, @@ -69641,42 +74609,43 @@ static const uint16_t ts_small_parse_table[] = { sym_float, ACTIONS(55), 1, sym_string_start, - ACTIONS(184), 1, + ACTIONS(180), 1, anon_sym_LBRACK, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1537), 1, + ACTIONS(916), 1, sym_identifier, - STATE(1497), 1, + ACTIONS(924), 1, + anon_sym_not, + STATE(1490), 1, + sym_call, + STATE(1539), 1, sym_primary_expression, - STATE(1768), 1, + STATE(1579), 1, + sym_expression, + STATE(1725), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2500), 1, sym_dotted_name, - STATE(2527), 1, - sym_expression, - STATE(3016), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + STATE(1902), 2, sym_in_operation, sym_not_in_operation, ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1896), 4, + STATE(1874), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -69687,7 +74656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1916), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69695,8 +74664,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69711,70 +74681,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59082] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [62004] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(896), 1, - anon_sym_not, - ACTIONS(906), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1611), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(565), 1, sym_float, - STATE(1551), 1, - sym_primary_expression, - STATE(1598), 1, - sym_expression, - STATE(1762), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1564), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(2397), 1, + STATE(1493), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69782,8 +74753,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69798,70 +74770,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59194] = 25, - ACTIONS(401), 1, + [62119] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - STATE(1185), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1431), 1, + sym_call, + STATE(1443), 1, + sym_expression, + STATE(1559), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2514), 1, sym_dotted_name, - STATE(2524), 1, - sym_expression, - STATE(3146), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(1748), 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(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69869,8 +74842,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69885,70 +74859,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59306] = 25, - ACTIONS(401), 1, + [62234] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1167), 1, sym_identifier, - STATE(1186), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2524), 1, + STATE(2378), 1, sym_expression, - STATE(3146), 1, + STATE(2501), 1, + sym_dotted_name, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -69956,8 +74931,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -69972,70 +74948,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59418] = 25, - ACTIONS(401), 1, + [62349] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1167), 1, sym_identifier, - STATE(1163), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2524), 1, + STATE(2388), 1, sym_expression, - STATE(3146), 1, + STATE(2501), 1, + sym_dotted_name, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70043,8 +75020,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70059,70 +75037,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59530] = 25, - ACTIONS(401), 1, + [62464] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(880), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1191), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1633), 1, sym_expression, - STATE(1201), 1, + STATE(1666), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1682), 1, + sym_call, + STATE(1923), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2522), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70130,8 +75109,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70146,70 +75126,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59642] = 25, - ACTIONS(401), 1, + [62579] = 26, + ACTIONS(1072), 1, + sym_identifier, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, + ACTIONS(1084), 1, anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - STATE(1189), 1, + STATE(1018), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2524), 1, + STATE(1064), 1, + sym_call, + STATE(2040), 1, sym_expression, - STATE(3146), 1, + STATE(2439), 1, + sym_dotted_name, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70217,8 +75198,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70233,70 +75215,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59754] = 25, - ACTIONS(401), 1, + [62694] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - STATE(1190), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2524), 1, + STATE(2307), 1, sym_expression, - STATE(3146), 1, + STATE(2514), 1, + sym_dotted_name, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(1748), 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(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70304,8 +75287,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70320,70 +75304,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59866] = 25, - ACTIONS(401), 1, + [62809] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(880), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1193), 1, - sym_expression, - STATE(1201), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1265), 1, + sym_identifier, + STATE(1630), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1682), 1, + sym_call, + STATE(1921), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2533), 1, + sym_expression, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70391,8 +75376,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70407,70 +75393,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [59978] = 25, - ACTIONS(401), 1, + [62924] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1210), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1265), 1, + sym_identifier, + STATE(1682), 1, + sym_call, + STATE(1712), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1921), 1, sym_selector_expression, - STATE(2218), 1, - sym_expression, - STATE(2454), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2533), 1, + sym_expression, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70478,8 +75465,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70494,70 +75482,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60090] = 25, - ACTIONS(401), 1, + [63039] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - STATE(1210), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1265), 1, + sym_identifier, + STATE(1682), 1, + sym_call, + STATE(1684), 1, sym_primary_expression, - STATE(1253), 1, + STATE(1921), 1, sym_selector_expression, - STATE(2220), 1, - sym_expression, - STATE(2454), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2533), 1, + sym_expression, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70565,8 +75554,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70581,135 +75571,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60202] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1565), 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(1567), 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, - [60270] = 25, - ACTIONS(507), 1, + [63154] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(981), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1415), 1, - sym_expression, - STATE(1416), 1, + ACTIONS(1265), 1, + sym_identifier, + STATE(1682), 1, + sym_call, + STATE(1683), 1, sym_primary_expression, - STATE(1543), 1, + STATE(1921), 1, sym_selector_expression, - STATE(2404), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2533), 1, + sym_expression, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1729), 4, + STATE(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70717,8 +75643,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70733,135 +75660,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60382] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1380), 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(1382), 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, - [60450] = 25, - ACTIONS(401), 1, + [63269] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(1653), 1, - sym_identifier, - ACTIONS(1655), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(908), 1, anon_sym_not, - STATE(1195), 1, + ACTIONS(1265), 1, + sym_identifier, + STATE(1679), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1682), 1, + sym_call, + STATE(1921), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2524), 1, + STATE(2533), 1, sym_expression, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70869,8 +75732,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70885,70 +75749,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60562] = 25, - ACTIONS(401), 1, + [63384] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(1653), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1265), 1, sym_identifier, - STATE(1195), 1, + STATE(1674), 1, sym_primary_expression, - STATE(1237), 1, + STATE(1682), 1, + sym_call, + STATE(1921), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2524), 1, + STATE(2533), 1, sym_expression, - STATE(3146), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1324), 4, + STATE(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -70956,8 +75821,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -70972,70 +75838,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60674] = 25, - ACTIONS(1041), 1, + [63499] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(1643), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1265), 1, sym_identifier, - STATE(1026), 1, + STATE(1673), 1, sym_primary_expression, - STATE(1062), 1, + STATE(1682), 1, + sym_call, + STATE(1921), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2513), 1, + STATE(2533), 1, sym_expression, - STATE(2983), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71043,8 +75910,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71059,70 +75927,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60786] = 25, - ACTIONS(758), 1, + [63614] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1618), 1, - sym_primary_expression, - STATE(1780), 1, - sym_expression, - STATE(1854), 1, + ACTIONS(1564), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(2413), 1, + STATE(1607), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1975), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71130,8 +75999,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71146,70 +76016,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [60898] = 25, - ACTIONS(1041), 1, + [63729] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(1643), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, sym_identifier, - STATE(1027), 1, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(1062), 1, + STATE(1431), 1, + sym_call, + STATE(1445), 1, + sym_expression, + STATE(1615), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2508), 1, sym_dotted_name, - STATE(2522), 1, - sym_expression, - STATE(2983), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1084), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71217,8 +76088,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71233,70 +76105,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61010] = 25, - ACTIONS(483), 1, + [63844] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - ACTIONS(1013), 1, + ACTIONS(1564), 1, sym_identifier, - ACTIONS(1015), 1, + ACTIONS(1566), 1, anon_sym_not, - STATE(1359), 1, - sym_expression, - STATE(1387), 1, - sym_primary_expression, - STATE(1399), 1, + STATE(1214), 1, sym_selector_expression, - STATE(2496), 1, + STATE(1493), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1526), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71304,8 +76177,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71320,70 +76194,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61122] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [63959] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1175), 1, + anon_sym_not, + STATE(1620), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1669), 1, sym_selector_expression, - STATE(2334), 1, + STATE(1765), 1, + sym_call, + STATE(2353), 1, sym_expression, - STATE(2401), 1, + STATE(2480), 1, sym_dotted_name, - STATE(3016), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71391,8 +76266,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71407,70 +76283,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61234] = 25, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(13), 1, + [64074] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(45), 1, - anon_sym_not, - ACTIONS(49), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1175), 1, + anon_sym_not, + STATE(1620), 1, sym_primary_expression, - STATE(1770), 1, + STATE(1669), 1, sym_selector_expression, - STATE(2401), 1, - sym_dotted_name, - STATE(2487), 1, + STATE(1765), 1, + sym_call, + STATE(2322), 1, sym_expression, - STATE(3016), 1, + STATE(2480), 1, + sym_dotted_name, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1924), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71478,8 +76355,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71494,70 +76372,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61346] = 25, - ACTIONS(483), 1, + [64189] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - ACTIONS(547), 1, - anon_sym_LPAREN, ACTIONS(549), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, - anon_sym_DQUOTE, ACTIONS(563), 1, + anon_sym_DQUOTE, + ACTIONS(565), 1, sym_float, - STATE(1334), 1, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1487), 1, + sym_expression, + STATE(1592), 1, sym_primary_expression, - STATE(1456), 1, + STATE(1649), 1, sym_selector_expression, + STATE(1765), 1, + sym_call, STATE(2492), 1, - sym_expression, - STATE(2501), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(559), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1537), 4, + STATE(1929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71565,8 +76444,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71581,70 +76461,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61458] = 25, - ACTIONS(13), 1, + [64304] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(23), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(25), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1564), 1, - sym_primary_expression, - STATE(1565), 1, - sym_expression, - STATE(1726), 1, + ACTIONS(1564), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(2470), 1, + STATE(1507), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3016), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(47), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1848), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(51), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1849), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71652,8 +76533,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1875), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71668,70 +76550,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61570] = 25, - ACTIONS(401), 1, + [64419] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1210), 1, - sym_primary_expression, - STATE(1253), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1564), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(2370), 1, - sym_expression, - STATE(2454), 1, + STATE(1508), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 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(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71739,8 +76622,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71755,136 +76639,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61682] = 4, - ACTIONS(1400), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1394), 26, - sym__dedent, + [64534] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, sym_string_start, - anon_sym_COMMA, + ACTIONS(549), 1, anon_sym_LPAREN, + ACTIONS(551), 1, anon_sym_LBRACK, + ACTIONS(553), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(563), 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(565), 1, sym_float, - ACTIONS(1396), 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, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1564), 1, + sym_identifier, + STATE(1214), 1, + sym_selector_expression, + STATE(1510), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, + sym_dotted_name, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + 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(1280), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(459), 5, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [61752] = 25, - ACTIONS(758), 1, + STATE(1323), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1268), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [64649] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(1167), 1, sym_identifier, - STATE(1719), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2541), 1, + STATE(2499), 1, sym_expression, - STATE(3189), 1, + STATE(2501), 1, + sym_dotted_name, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71892,8 +76800,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71908,70 +76817,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61864] = 25, - ACTIONS(758), 1, + [64764] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1564), 1, sym_identifier, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, + STATE(1214), 1, sym_selector_expression, - STATE(2373), 1, - sym_expression, - STATE(2472), 1, + STATE(1511), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -71979,8 +76889,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -71995,70 +76906,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [61976] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, + [64879] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(957), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(961), 1, - anon_sym_not, - ACTIONS(971), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1471), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(565), 1, sym_float, - STATE(355), 1, - sym_expression, - STATE(392), 1, - sym_primary_expression, - STATE(694), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1564), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(2462), 1, + STATE(1512), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2965), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72066,8 +76978,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72082,70 +76995,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62088] = 25, - ACTIONS(483), 1, + [64994] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(1203), 1, - sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - STATE(1536), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1747), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2326), 1, - sym_expression, - STATE(2489), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2505), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72153,8 +77067,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72169,70 +77084,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62200] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, + [65109] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(957), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(961), 1, - anon_sym_not, - ACTIONS(971), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1471), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(565), 1, sym_float, - STATE(310), 1, - sym_expression, - STATE(392), 1, - sym_primary_expression, - STATE(694), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1564), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(2462), 1, + STATE(1513), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2965), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72240,8 +77156,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72256,70 +77173,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62312] = 25, - ACTIONS(949), 1, + [65224] = 6, + ACTIONS(1568), 1, + anon_sym_DOT, + ACTIONS(1571), 1, + anon_sym_QMARK_DOT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(780), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1487), 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_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(1489), 31, + 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, - ACTIONS(951), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [65299] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(957), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(971), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1471), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(1263), 1, sym_float, - STATE(392), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(394), 1, - sym_expression, - STATE(694), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2462), 1, + STATE(2390), 1, + sym_expression, + STATE(2421), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72327,8 +77314,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72343,70 +77331,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62424] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, + [65414] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(957), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(961), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(971), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1471), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(1263), 1, sym_float, - STATE(370), 1, - sym_expression, - STATE(392), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(694), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2462), 1, + STATE(2331), 1, sym_dotted_name, - STATE(2965), 1, + STATE(2493), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72414,8 +77403,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72430,70 +77420,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62536] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, + [65529] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(957), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(961), 1, - anon_sym_not, - ACTIONS(971), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1471), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(565), 1, sym_float, - STATE(386), 1, - sym_expression, - STATE(392), 1, - sym_primary_expression, - STATE(694), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1564), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(2462), 1, + STATE(1514), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2965), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72501,8 +77492,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72517,70 +77509,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62648] = 25, - ACTIONS(758), 1, + [65644] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(684), 1, sym_identifier, - STATE(1679), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2541), 1, + STATE(2293), 1, sym_expression, - STATE(3189), 1, + STATE(2514), 1, + sym_dotted_name, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72588,8 +77581,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72604,70 +77598,140 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62760] = 25, - ACTIONS(758), 1, + [65759] = 6, + ACTIONS(1574), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(1577), 1, + anon_sym_QMARK_DOT, + STATE(785), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 25, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, 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(1475), 32, + anon_sym_import, + 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, + [65834] = 26, + 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(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1657), 1, - sym_identifier, - ACTIONS(1659), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1679), 1, + ACTIONS(1265), 1, + sym_identifier, + STATE(1642), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1682), 1, + sym_call, + STATE(1921), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2541), 1, + STATE(2533), 1, sym_expression, - STATE(3189), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72675,8 +77739,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72691,70 +77756,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62872] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, + [65949] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(961), 1, - anon_sym_not, - ACTIONS(971), 1, - sym_string_start, - ACTIONS(1471), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(788), 1, sym_float, - STATE(369), 1, - sym_expression, - STATE(392), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1265), 1, + sym_identifier, + STATE(1660), 1, sym_primary_expression, - STATE(694), 1, + STATE(1682), 1, + sym_call, + STATE(1921), 1, sym_selector_expression, - STATE(2462), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2965), 1, + STATE(2535), 1, + sym_expression, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(2031), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72762,8 +77828,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72778,70 +77845,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [62984] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, + [66064] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(961), 1, - anon_sym_not, - ACTIONS(971), 1, - sym_string_start, - ACTIONS(1471), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1473), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1483), 1, + ACTIONS(537), 1, sym_float, - STATE(392), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(393), 1, - sym_expression, - STATE(694), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2462), 1, + STATE(2423), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(2965), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(899), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1479), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(969), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(969), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(897), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72849,8 +77917,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(896), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72865,70 +77934,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63096] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [66179] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1051), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1627), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - STATE(1021), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1043), 1, - sym_expression, - STATE(1051), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2420), 1, + sym_expression, + STATE(2456), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -72936,8 +78006,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -72952,13 +78023,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63208] = 4, - STATE(338), 1, + [66294] = 5, + ACTIONS(1580), 1, + anon_sym_EQ, + STATE(798), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 26, + ACTIONS(1463), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -72985,7 +78058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1561), 32, + ACTIONS(1465), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -73018,70 +78091,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [63278] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [66367] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1061), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1627), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(1315), 1, sym_float, - STATE(1021), 1, + ACTIONS(1582), 1, + sym_identifier, + STATE(1020), 1, sym_primary_expression, - STATE(1034), 1, - sym_expression, - STATE(1051), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2448), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2554), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73089,8 +78163,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73105,70 +78180,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63390] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [66482] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1061), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1627), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(1315), 1, sym_float, - STATE(1021), 1, + ACTIONS(1582), 1, + sym_identifier, + STATE(1034), 1, sym_primary_expression, - STATE(1040), 1, - sym_expression, - STATE(1051), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2448), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73176,8 +78252,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73192,70 +78269,138 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63502] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [66597] = 4, + ACTIONS(1584), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 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(1534), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(1047), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(1051), 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_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, + [66668] = 26, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1061), 1, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1627), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(1315), 1, sym_float, - STATE(1021), 1, + ACTIONS(1582), 1, + sym_identifier, + STATE(1022), 1, sym_primary_expression, - STATE(1024), 1, - sym_expression, - STATE(1051), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2448), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73263,8 +78408,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73279,70 +78425,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63614] = 25, - ACTIONS(758), 1, + [66783] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1564), 1, sym_identifier, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, + STATE(1214), 1, sym_selector_expression, - STATE(2367), 1, - sym_expression, - STATE(2472), 1, + STATE(1532), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2543), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73350,8 +78497,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73366,70 +78514,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63726] = 25, - ACTIONS(758), 1, + [66898] = 26, + ACTIONS(882), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(902), 1, + sym_string_start, + ACTIONS(988), 1, + sym_identifier, + ACTIONS(990), 1, + anon_sym_not, + ACTIONS(1271), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1275), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1277), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1281), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1283), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, - sym_identifier, - STATE(1750), 1, + STATE(1500), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1565), 1, + sym_call, + STATE(1771), 1, sym_selector_expression, - STATE(2366), 1, + STATE(2359), 1, sym_expression, - STATE(2472), 1, + STATE(2463), 1, sym_dotted_name, - STATE(3189), 1, + STATE(3123), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1838), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1840), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1279), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1891), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(900), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1850), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73437,8 +78586,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1853), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73453,70 +78603,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63838] = 25, - ACTIONS(758), 1, + [67013] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, + ACTIONS(908), 1, anon_sym_not, - STATE(1618), 1, - sym_primary_expression, - STATE(1699), 1, - sym_expression, - STATE(1854), 1, + ACTIONS(1564), 1, + sym_identifier, + STATE(1214), 1, sym_selector_expression, - STATE(2413), 1, + STATE(1533), 1, + sym_primary_expression, + STATE(1765), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2566), 1, + sym_expression, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1975), 4, + STATE(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73524,8 +78675,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73540,70 +78692,138 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [63950] = 25, - ACTIONS(1041), 1, + [67128] = 4, + STATE(657), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1443), 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(1445), 33, + anon_sym_import, anon_sym_DOT, - ACTIONS(1047), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, + anon_sym_EQ, anon_sym_lambda, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1165), 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(1627), 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, + [67199] = 26, + ACTIONS(764), 1, + anon_sym_DOT, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(788), 1, sym_float, - STATE(1006), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(1068), 1, - sym_selector_expression, - STATE(1963), 1, + STATE(1682), 1, + sym_call, + STATE(1801), 1, sym_expression, - STATE(2407), 1, + STATE(1923), 1, + sym_selector_expression, + STATE(2522), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73611,8 +78831,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73627,70 +78848,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64062] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [67314] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1627), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(537), 1, sym_float, - STATE(1019), 1, - sym_expression, - STATE(1021), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1403), 1, + sym_identifier, + STATE(1431), 1, + sym_call, + STATE(1461), 1, sym_primary_expression, - STATE(1051), 1, + STATE(1568), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2534), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73698,8 +78920,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73714,70 +78937,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64174] = 25, - ACTIONS(758), 1, + [67429] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1069), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(1691), 1, + STATE(1431), 1, + sym_call, + STATE(1465), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1568), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2541), 1, + STATE(2558), 1, sym_expression, - STATE(3189), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73785,8 +79009,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73801,70 +79026,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64286] = 25, - ACTIONS(758), 1, + [67544] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(517), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(684), 1, sym_identifier, - STATE(1690), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2541), 1, + STATE(2419), 1, sym_expression, - STATE(3189), 1, + STATE(2514), 1, + sym_dotted_name, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73872,8 +79098,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73888,70 +79115,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64398] = 25, - ACTIONS(758), 1, + [67659] = 26, + ACTIONS(13), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(23), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(43), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(49), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(53), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(55), 1, sym_string_start, - ACTIONS(1069), 1, + ACTIONS(180), 1, + anon_sym_LBRACK, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(1405), 1, sym_identifier, - STATE(1684), 1, + STATE(1490), 1, + sym_call, + STATE(1501), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1769), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2541), 1, + STATE(2556), 1, sym_expression, - STATE(3189), 1, + STATE(3247), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1871), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(47), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(1868), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(51), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -73959,8 +79187,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1924), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -73975,70 +79204,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64510] = 25, - ACTIONS(758), 1, + [67774] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(1173), 1, sym_identifier, - STATE(1654), 1, + ACTIONS(1175), 1, + anon_sym_not, + STATE(1620), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1669), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2541), 1, + STATE(1765), 1, + sym_call, + STATE(2312), 1, sym_expression, - STATE(3189), 1, + STATE(2480), 1, + sym_dotted_name, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74046,8 +79276,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74062,70 +79293,206 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64622] = 25, - ACTIONS(758), 1, + [67889] = 4, + ACTIONS(1586), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1526), 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(1524), 34, + anon_sym_import, anon_sym_DOT, - ACTIONS(762), 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, + [67960] = 5, + ACTIONS(1588), 1, + anon_sym_PIPE, + STATE(806), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1519), 25, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_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(1517), 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, + [68033] = 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(770), 1, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(537), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(1069), 1, + ACTIONS(908), 1, anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(1403), 1, sym_identifier, - STATE(1673), 1, + STATE(1431), 1, + sym_call, + STATE(1482), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1568), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2541), 1, + STATE(2558), 1, sym_expression, - STATE(3189), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74133,8 +79500,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74149,70 +79517,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64734] = 25, - ACTIONS(758), 1, + [68148] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1657), 1, - sym_identifier, - STATE(1672), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2421), 1, sym_dotted_name, - STATE(2541), 1, + STATE(2507), 1, sym_expression, - STATE(3189), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74220,8 +79589,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74236,70 +79606,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64846] = 25, - ACTIONS(758), 1, + [68263] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(778), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(565), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(906), 1, sym_identifier, - STATE(1669), 1, - sym_primary_expression, - STATE(1880), 1, + ACTIONS(908), 1, + anon_sym_not, + STATE(1214), 1, sym_selector_expression, - STATE(2414), 1, + STATE(1387), 1, + sym_call, + STATE(1999), 1, + sym_primary_expression, + STATE(2434), 1, sym_dotted_name, - STATE(2541), 1, + STATE(2553), 1, sym_expression, - STATE(3189), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1369), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(1280), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74307,8 +79678,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74323,70 +79695,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [64958] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [68378] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1627), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(537), 1, sym_float, - STATE(1021), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1403), 1, + sym_identifier, + STATE(1431), 1, + sym_call, + STATE(1483), 1, sym_primary_expression, - STATE(1028), 1, - sym_expression, - STATE(1051), 1, + STATE(1568), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2558), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74394,8 +79767,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74410,70 +79784,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65070] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [68493] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1627), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(788), 1, sym_float, - STATE(1021), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(1167), 1, + sym_identifier, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1029), 1, - sym_expression, - STATE(1051), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2380), 1, + sym_expression, + STATE(2501), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74481,8 +79856,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74497,201 +79873,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65182] = 4, - STATE(2212), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1599), 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(1601), 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, - [65252] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1539), 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(1541), 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, + [68608] = 26, + ACTIONS(908), 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, - [65320] = 25, - ACTIONS(483), 1, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1079), 1, + ACTIONS(1582), 1, sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1155), 1, - sym_expression, - STATE(1594), 1, + STATE(1025), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2431), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74699,8 +79945,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74715,70 +79962,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65432] = 25, - ACTIONS(483), 1, + [68723] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1079), 1, + ACTIONS(1582), 1, sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1156), 1, - sym_expression, - STATE(1594), 1, + STATE(1026), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2431), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74786,8 +80034,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74802,70 +80051,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65544] = 25, - ACTIONS(483), 1, + [68838] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1079), 1, + ACTIONS(1582), 1, sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1512), 1, - sym_expression, - STATE(1594), 1, + STATE(1027), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2431), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74873,8 +80123,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74889,70 +80140,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65656] = 25, - ACTIONS(483), 1, + [68953] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1079), 1, + ACTIONS(1582), 1, sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1557), 1, - sym_expression, - STATE(1594), 1, + STATE(1029), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2431), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -74960,8 +80212,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -74976,70 +80229,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65768] = 25, - ACTIONS(483), 1, + [69068] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1079), 1, + ACTIONS(1582), 1, sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1594), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1596), 1, - sym_expression, - STATE(1802), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2431), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75047,8 +80301,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75063,70 +80318,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65880] = 25, - ACTIONS(483), 1, + [69183] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1079), 1, + ACTIONS(1582), 1, sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1570), 1, - sym_expression, - STATE(1594), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2431), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75134,8 +80390,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75150,70 +80407,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [65992] = 25, - ACTIONS(483), 1, + [69298] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(489), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(503), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(549), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(551), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(557), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(561), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(1079), 1, + ACTIONS(1582), 1, sym_identifier, - ACTIONS(1081), 1, - anon_sym_not, - STATE(1522), 1, - sym_expression, - STATE(1594), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1802), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2431), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3210), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1810), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75221,8 +80479,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75237,11 +80496,14 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66104] = 3, + [69413] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1533), 26, + STATE(780), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1437), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -75268,14 +80530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1535), 33, + ACTIONS(1439), 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, @@ -75302,70 +80563,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [66172] = 25, - ACTIONS(507), 1, + [69484] = 26, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(1080), 1, + anon_sym_lambda, + ACTIONS(1094), 1, + sym_string_start, + ACTIONS(1203), 1, + sym_identifier, + ACTIONS(1205), 1, + anon_sym_not, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1315), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1405), 1, + STATE(1043), 1, sym_expression, - STATE(1408), 1, + STATE(1054), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1059), 1, sym_selector_expression, - STATE(2411), 1, + STATE(1064), 1, + sym_call, + STATE(2489), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1092), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75373,8 +80635,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75389,70 +80652,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66284] = 25, - ACTIONS(1039), 1, - sym_identifier, - ACTIONS(1041), 1, + [69599] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1051), 1, + ACTIONS(449), 1, anon_sym_not, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1627), 1, + ACTIONS(545), 1, + sym_identifier, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - STATE(1021), 1, + STATE(1376), 1, sym_primary_expression, - STATE(1039), 1, - sym_expression, - STATE(1051), 1, + STATE(1387), 1, + sym_call, + STATE(1437), 1, sym_selector_expression, - STATE(2448), 1, + STATE(2437), 1, + sym_expression, + STATE(2456), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(561), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1112), 4, + STATE(1589), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75460,8 +80724,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75476,70 +80741,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66396] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1093), 1, + [69714] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1103), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1113), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1263), 1, sym_float, - STATE(353), 1, - sym_expression, - STATE(389), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(702), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2391), 1, + sym_expression, + STATE(2421), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75547,8 +80813,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75563,70 +80830,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66508] = 25, - ACTIONS(1091), 1, + [69829] = 26, + ACTIONS(1072), 1, sym_identifier, - ACTIONS(1093), 1, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(1103), 1, + ACTIONS(1084), 1, anon_sym_not, - ACTIONS(1113), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1315), 1, sym_float, - STATE(315), 1, - sym_expression, - STATE(389), 1, + STATE(1018), 1, sym_primary_expression, - STATE(702), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2412), 1, + STATE(1064), 1, + sym_call, + STATE(2034), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1127), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1118), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75634,8 +80902,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75650,70 +80919,160 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66620] = 25, - ACTIONS(1091), 1, + [69944] = 26, + ACTIONS(1072), 1, sym_identifier, - ACTIONS(1093), 1, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(1103), 1, + ACTIONS(1084), 1, anon_sym_not, - ACTIONS(1113), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1315), 1, sym_float, - STATE(389), 1, + STATE(1018), 1, sym_primary_expression, - STATE(391), 1, - sym_expression, - STATE(702), 1, + STATE(1063), 1, sym_selector_expression, - STATE(2412), 1, + STATE(1064), 1, + sym_call, + STATE(1995), 1, + sym_expression, + STATE(2439), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1115), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, + ACTIONS(27), 4, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + STATE(1127), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + ACTIONS(1092), 5, + sym_integer, + sym_true, + sym_false, + sym_none, + sym_undefined, + STATE(1118), 7, + sym_as_expression, + sym_not_operator, + sym_boolean_operator, + sym_long_expression, + sym_sequence_operation, + sym_comparison_operator, + sym_conditional_expression, + STATE(1113), 16, + sym_schema_expr, + sym_schema_instantiation, + 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_attribute_declaration, + sym_optional_item, + sym_null_coalesce, + sym_string, + [70059] = 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(531), 1, + anon_sym_DQUOTE, + ACTIONS(537), 1, + sym_float, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1403), 1, + sym_identifier, + STATE(1412), 1, + sym_primary_expression, + STATE(1431), 1, + sym_call, + STATE(1568), 1, + sym_selector_expression, + STATE(2434), 1, + sym_dotted_name, + STATE(2558), 1, + sym_expression, + STATE(3173), 1, + sym_quant_op, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1321), 2, + sym_in_operation, + sym_not_in_operation, + STATE(1741), 2, sym_binary_operator, sym_subscript, - sym_call, + ACTIONS(529), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75721,8 +81080,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75737,70 +81097,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66732] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1093), 1, + [70174] = 26, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(1103), 1, - anon_sym_not, - ACTIONS(1113), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1315), 1, sym_float, - STATE(365), 1, - sym_expression, - STATE(389), 1, + ACTIONS(1582), 1, + sym_identifier, + ACTIONS(1591), 1, + anon_sym_not, + STATE(1016), 1, sym_primary_expression, - STATE(702), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2412), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75808,8 +81169,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75824,70 +81186,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66844] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1093), 1, + [70289] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(1099), 1, - anon_sym_lambda, - ACTIONS(1103), 1, - anon_sym_not, - ACTIONS(1113), 1, - sym_string_start, - ACTIONS(1227), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(774), 1, + anon_sym_lambda, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(788), 1, sym_float, - STATE(382), 1, - sym_expression, - STATE(389), 1, + ACTIONS(790), 1, + sym_string_start, + ACTIONS(954), 1, + sym_identifier, + ACTIONS(962), 1, + anon_sym_not, + STATE(1666), 1, sym_primary_expression, - STATE(702), 1, + STATE(1682), 1, + sym_call, + STATE(1690), 1, + sym_expression, + STATE(1923), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2522), 1, sym_dotted_name, - STATE(3059), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(2011), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75895,8 +81258,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75911,70 +81275,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [66956] = 25, - ACTIONS(758), 1, + [70404] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(1167), 1, sym_identifier, - STATE(1655), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2541), 1, + STATE(2379), 1, sym_expression, - STATE(3189), 1, + STATE(2501), 1, + sym_dotted_name, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -75982,8 +81347,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -75998,70 +81364,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67068] = 25, - ACTIONS(758), 1, + [70519] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(768), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(772), 1, - anon_sym_QMARK_DOT, ACTIONS(778), 1, + anon_sym_QMARK_DOT, + ACTIONS(780), 1, + anon_sym_not, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(784), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1657), 1, + ACTIONS(1167), 1, sym_identifier, - STATE(1604), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1880), 1, + STATE(1696), 1, + sym_expression, + STATE(1905), 1, sym_selector_expression, - STATE(2414), 1, + STATE(2501), 1, sym_dotted_name, - STATE(2537), 1, - sym_expression, - STATE(3189), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 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(780), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76069,8 +81436,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76085,70 +81453,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67180] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1093), 1, + [70634] = 26, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1074), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(1080), 1, anon_sym_lambda, - ACTIONS(1103), 1, - anon_sym_not, - ACTIONS(1113), 1, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1303), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1307), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1309), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1313), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1315), 1, sym_float, - STATE(359), 1, - sym_expression, - STATE(389), 1, + ACTIONS(1582), 1, + sym_identifier, + STATE(1016), 1, sym_primary_expression, - STATE(702), 1, + STATE(1058), 1, sym_selector_expression, - STATE(2412), 1, + STATE(1064), 1, + sym_call, + STATE(2434), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2540), 1, + sym_expression, + STATE(2994), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1137), 2, + sym_binary_operator, + sym_subscript, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(1311), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1125), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(1092), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76156,8 +81525,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1113), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76172,70 +81542,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67292] = 25, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(1093), 1, + [70749] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(1099), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(1103), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(1113), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1227), 1, + ACTIONS(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1229), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1231), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1237), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1239), 1, + ACTIONS(1263), 1, sym_float, - STATE(389), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(390), 1, - sym_expression, - STATE(702), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2412), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3059), 1, + STATE(2512), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(907), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1235), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(906), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(954), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1111), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(905), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76243,8 +81614,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(904), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76259,22 +81631,30 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67404] = 4, - STATE(2212), 1, + [70864] = 10, + ACTIONS(1323), 1, + anon_sym_LPAREN, + ACTIONS(1325), 1, + anon_sym_LBRACK, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, + anon_sym_QMARK_DOT, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + STATE(926), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1425), 21, + 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, @@ -76290,9 +81670,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, - ACTIONS(1601), 32, + ACTIONS(1427), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -76325,70 +81704,71 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [67474] = 25, - ACTIONS(1041), 1, + [70947] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1165), 1, - anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(537), 1, sym_float, - STATE(1006), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1403), 1, + sym_identifier, + STATE(1431), 1, + sym_call, + STATE(1476), 1, sym_primary_expression, - STATE(1068), 1, + STATE(1568), 1, sym_selector_expression, - STATE(1940), 1, - sym_expression, - STATE(2407), 1, + STATE(2434), 1, sym_dotted_name, - STATE(2983), 1, + STATE(2558), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76396,8 +81776,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76412,70 +81793,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67586] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [71062] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(896), 1, - anon_sym_not, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1611), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(537), 1, sym_float, - STATE(1511), 1, - sym_expression, - STATE(1551), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1403), 1, + sym_identifier, + STATE(1431), 1, + sym_call, + STATE(1477), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1568), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2558), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76483,8 +81865,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76499,70 +81882,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67698] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [71177] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(896), 1, - anon_sym_not, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1611), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(537), 1, sym_float, - STATE(1473), 1, - sym_expression, - STATE(1551), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1403), 1, + sym_identifier, + STATE(1431), 1, + sym_call, + STATE(1481), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1568), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2558), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76570,8 +81954,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76586,70 +81971,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67810] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [71292] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(896), 1, - anon_sym_not, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1611), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(537), 1, sym_float, - STATE(1538), 1, - sym_expression, - STATE(1551), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1403), 1, + sym_identifier, + STATE(1431), 1, + sym_call, + STATE(1478), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1568), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2558), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1734), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76657,8 +82043,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76673,70 +82060,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [67922] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [71407] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(896), 1, - anon_sym_not, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1611), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(537), 1, sym_float, - STATE(1541), 1, - sym_expression, - STATE(1551), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(1002), 1, + anon_sym_not, + STATE(1419), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1431), 1, + sym_call, + STATE(1473), 1, + sym_expression, + STATE(1615), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2508), 1, sym_dotted_name, - STATE(3106), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1668), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76744,8 +82132,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76760,70 +82149,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68034] = 25, - ACTIONS(483), 1, + [71522] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 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(1203), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, sym_identifier, - ACTIONS(1205), 1, - anon_sym_not, - STATE(1536), 1, + STATE(1430), 1, sym_primary_expression, - STATE(1747), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2319), 1, + STATE(2287), 1, sym_expression, - STATE(2489), 1, + STATE(2514), 1, sym_dotted_name, - STATE(3210), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1605), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1872), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(501), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1281), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76831,8 +82221,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1279), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76847,70 +82238,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68146] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [71637] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(411), 1, anon_sym_lambda, - ACTIONS(896), 1, + ACTIONS(419), 1, anon_sym_not, - ACTIONS(906), 1, + ACTIONS(431), 1, sym_string_start, - ACTIONS(1611), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(1263), 1, sym_float, - STATE(1551), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1582), 1, - sym_expression, - STATE(1762), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2318), 1, sym_dotted_name, - STATE(3106), 1, + STATE(2510), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -76918,8 +82310,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -76934,70 +82327,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68258] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [71752] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(896), 1, - anon_sym_not, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1611), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(537), 1, sym_float, - STATE(1545), 1, - sym_expression, - STATE(1551), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2397), 1, + STATE(2296), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(3106), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1748), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(535), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77005,8 +82399,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77021,70 +82416,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68370] = 25, - ACTIONS(884), 1, - sym_identifier, - ACTIONS(886), 1, + [71867] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(892), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(896), 1, - anon_sym_not, - ACTIONS(906), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1611), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1613), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(565), 1, sym_float, - STATE(1548), 1, + ACTIONS(974), 1, + sym_identifier, + ACTIONS(976), 1, + anon_sym_not, + STATE(1550), 1, sym_expression, - STATE(1551), 1, + STATE(1592), 1, sym_primary_expression, - STATE(1762), 1, + STATE(1649), 1, sym_selector_expression, - STATE(2397), 1, + STATE(1765), 1, + sym_call, + STATE(2492), 1, sym_dotted_name, - STATE(3106), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1830), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1619), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1865), 4, + STATE(1929), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(904), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1832), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77092,8 +82488,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1835), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77108,70 +82505,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68482] = 25, - ACTIONS(1041), 1, + [71982] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(1047), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(1061), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1165), 1, - anon_sym_not, - ACTIONS(1627), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1629), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1639), 1, + ACTIONS(565), 1, sym_float, - STATE(1006), 1, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1175), 1, + anon_sym_not, + STATE(1620), 1, sym_primary_expression, - STATE(1034), 1, - sym_expression, - STATE(1068), 1, + STATE(1669), 1, sym_selector_expression, - STATE(2407), 1, + STATE(1765), 1, + sym_call, + STATE(2340), 1, + sym_expression, + STATE(2480), 1, sym_dotted_name, - STATE(2983), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1635), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1080), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(1059), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1098), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77179,8 +82577,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1071), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77195,70 +82594,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68594] = 25, - ACTIONS(401), 1, + [72097] = 26, + ACTIONS(435), 1, anon_sym_DOT, - ACTIONS(411), 1, + ACTIONS(443), 1, anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(880), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1164), 1, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1175), 1, + anon_sym_not, + STATE(1173), 1, sym_expression, - STATE(1201), 1, + STATE(1620), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1669), 1, sym_selector_expression, - STATE(2400), 1, + STATE(1765), 1, + sym_call, + STATE(2480), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77266,8 +82666,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77282,135 +82683,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68706] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1529), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [72212] = 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, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, + ACTIONS(531), 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(537), 1, 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, - 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, - [68774] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, + ACTIONS(539), 1, sym_string_start, - ACTIONS(878), 1, + ACTIONS(1403), 1, sym_identifier, - ACTIONS(880), 1, + ACTIONS(1593), 1, anon_sym_not, - ACTIONS(1509), 1, - anon_sym_LPAREN, - ACTIONS(1511), 1, - anon_sym_LBRACK, - ACTIONS(1513), 1, - anon_sym_LBRACE, - ACTIONS(1515), 1, - anon_sym_QMARK_DOT, - ACTIONS(1519), 1, - anon_sym_DQUOTE, - ACTIONS(1521), 1, - sym_float, - STATE(1168), 1, - sym_expression, - STATE(1201), 1, + STATE(1431), 1, + sym_call, + STATE(1464), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1568), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2558), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1734), 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(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77418,8 +82755,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77434,70 +82772,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68886] = 25, - ACTIONS(401), 1, + [72327] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(880), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(537), 1, sym_float, - STATE(1201), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(908), 1, + anon_sym_not, + ACTIONS(1403), 1, + sym_identifier, + STATE(1431), 1, + sym_call, + STATE(1464), 1, sym_primary_expression, - STATE(1203), 1, - sym_expression, - STATE(1267), 1, + STATE(1568), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2434), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2558), 1, + sym_expression, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1734), 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(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77505,8 +82844,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77521,70 +82861,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [68998] = 25, - ACTIONS(401), 1, + [72442] = 26, + ACTIONS(507), 1, anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(880), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(509), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(517), 1, + anon_sym_lambda, + ACTIONS(519), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(525), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(527), 1, + anon_sym_not, + ACTIONS(531), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(537), 1, sym_float, - STATE(1181), 1, - sym_expression, - STATE(1201), 1, + ACTIONS(539), 1, + sym_string_start, + ACTIONS(684), 1, + sym_identifier, + STATE(1430), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1431), 1, + sym_call, + STATE(1559), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2375), 1, + sym_expression, + STATE(2514), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3173), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1741), 2, + sym_binary_operator, + sym_subscript, + STATE(1746), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(529), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1748), 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(1376), 7, + STATE(1735), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77592,8 +82933,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1733), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77608,70 +82950,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69110] = 25, - ACTIONS(507), 1, + [72557] = 26, + ACTIONS(764), 1, anon_sym_DOT, - ACTIONS(509), 1, + ACTIONS(768), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(517), 1, + ACTIONS(774), 1, anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(776), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(778), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, + ACTIONS(780), 1, anon_sym_not, - ACTIONS(531), 1, + ACTIONS(784), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(788), 1, sym_float, - ACTIONS(539), 1, + ACTIONS(790), 1, sym_string_start, - ACTIONS(690), 1, + ACTIONS(1167), 1, sym_identifier, - STATE(1408), 1, + STATE(1682), 1, + sym_call, + STATE(1685), 1, sym_primary_expression, - STATE(1414), 1, + STATE(1779), 1, sym_expression, - STATE(1592), 1, + STATE(1905), 1, sym_selector_expression, - STATE(2411), 1, + STATE(2501), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3203), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1997), 2, + sym_binary_operator, + sym_subscript, + STATE(2008), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(782), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1991), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(535), 5, + ACTIONS(786), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, + STATE(2002), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77679,8 +83022,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(2005), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77695,70 +83039,222 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69222] = 25, - ACTIONS(401), 1, + [72672] = 21, + ACTIONS(1323), 1, + anon_sym_LPAREN, + ACTIONS(1325), 1, + anon_sym_LBRACK, + ACTIONS(1331), 1, + anon_sym_STAR_STAR, + ACTIONS(1333), 1, + anon_sym_QMARK_DOT, + ACTIONS(1335), 1, + anon_sym_not, + ACTIONS(1341), 1, + anon_sym_PIPE, + ACTIONS(1343), 1, + anon_sym_AMP, + ACTIONS(1345), 1, + anon_sym_CARET, + ACTIONS(1351), 1, + anon_sym_is, + ACTIONS(1353), 1, + anon_sym_QMARK_LBRACK, + STATE(926), 1, + sym_argument_list, + STATE(1110), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1339), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1347), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1327), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1349), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1321), 8, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1319), 25, + 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(431), 1, - sym_string_start, - ACTIONS(878), 1, + 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(880), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [72777] = 4, + ACTIONS(1595), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1503), 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(1501), 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(1509), 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, + [72848] = 26, + ACTIONS(435), 1, + anon_sym_DOT, + ACTIONS(443), 1, + anon_sym_lambda, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(551), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(559), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(563), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(565), 1, sym_float, - STATE(1198), 1, + ACTIONS(1173), 1, + sym_identifier, + ACTIONS(1175), 1, + anon_sym_not, + STATE(1167), 1, sym_expression, - STATE(1201), 1, + STATE(1620), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1669), 1, sym_selector_expression, - STATE(2400), 1, + STATE(1765), 1, + sym_call, + STATE(2480), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3223), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1321), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + STATE(1322), 2, + sym_binary_operator, + sym_subscript, + ACTIONS(1355), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1928), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(429), 5, + ACTIONS(459), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1323), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77766,8 +83262,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1268), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77782,70 +83279,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69334] = 25, - ACTIONS(758), 1, + [72963] = 26, + ACTIONS(401), 1, anon_sym_DOT, - ACTIONS(762), 1, + ACTIONS(411), 1, + anon_sym_lambda, + ACTIONS(419), 1, + anon_sym_not, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(782), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, + ACTIONS(1269), 1, sym_identifier, - STATE(1750), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1853), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2365), 1, - sym_expression, - STATE(2472), 1, + STATE(2319), 1, sym_dotted_name, - STATE(3189), 1, + STATE(2457), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1936), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(776), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1979), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - ACTIONS(780), 5, + ACTIONS(429), 5, sym_integer, sym_true, sym_false, sym_none, sym_undefined, - STATE(1988), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77853,8 +83351,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1992), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77869,59 +83368,60 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69446] = 25, + [73078] = 26, 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(878), 1, - sym_identifier, - ACTIONS(880), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1174), 1, - sym_expression, - STATE(1201), 1, + ACTIONS(1269), 1, + sym_identifier, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1267), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2349), 1, sym_dotted_name, - STATE(3146), 1, + STATE(2511), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -77932,7 +83432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -77940,8 +83440,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -77956,59 +83457,60 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69558] = 25, + [73193] = 26, 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(878), 1, + ACTIONS(1215), 1, sym_identifier, - ACTIONS(880), 1, - anon_sym_not, - ACTIONS(1509), 1, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(1511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1521), 1, + ACTIONS(1263), 1, sym_float, - STATE(1201), 1, - sym_primary_expression, + STATE(1200), 1, + sym_call, STATE(1202), 1, - sym_expression, - STATE(1267), 1, + sym_primary_expression, + STATE(1287), 1, sym_selector_expression, - STATE(2400), 1, + STATE(2396), 1, + sym_expression, + STATE(2421), 1, sym_dotted_name, - STATE(3146), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1372), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(1517), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1343), 4, + STATE(1408), 4, sym_list, sym_dictionary, sym_list_comprehension, @@ -78019,7 +83521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - STATE(1376), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78027,8 +83529,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1377), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -78043,70 +83546,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69670] = 25, - ACTIONS(507), 1, + [73308] = 26, + 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(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(527), 1, - anon_sym_not, - ACTIONS(531), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1592), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2274), 1, - sym_expression, - STATE(2411), 1, + STATE(2421), 1, sym_dotted_name, - STATE(3161), 1, + STATE(2469), 1, + sym_expression, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1792), 4, + STATE(1408), 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(1798), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78114,8 +83618,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -78130,70 +83635,71 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69782] = 25, - ACTIONS(507), 1, + [73423] = 26, + 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(1215), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(517), 1, - anon_sym_lambda, - ACTIONS(519), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(525), 1, + ACTIONS(1257), 1, anon_sym_QMARK_DOT, - ACTIONS(531), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(537), 1, + ACTIONS(1263), 1, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(981), 1, - anon_sym_not, - STATE(1407), 1, - sym_expression, - STATE(1416), 1, + STATE(1200), 1, + sym_call, + STATE(1202), 1, sym_primary_expression, - STATE(1543), 1, + STATE(1287), 1, sym_selector_expression, - STATE(2404), 1, + STATE(2415), 1, + sym_expression, + STATE(2421), 1, sym_dotted_name, - STATE(3161), 1, + STATE(3170), 1, sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, + STATE(1404), 2, + sym_binary_operator, + sym_subscript, + STATE(1409), 2, sym_in_operation, sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1259), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_TILDE, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, ACTIONS(27), 4, anon_sym_all, anon_sym_any, anon_sym_filter, anon_sym_map, - STATE(1729), 4, + STATE(1408), 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(1798), 7, + STATE(1396), 7, sym_as_expression, sym_not_operator, sym_boolean_operator, @@ -78201,8 +83707,9 @@ static const uint16_t ts_small_parse_table[] = { sym_sequence_operation, sym_comparison_operator, sym_conditional_expression, - STATE(1799), 15, + STATE(1395), 16, sym_schema_expr, + sym_schema_instantiation, sym_lambda_expr, sym_quant_expr, sym_paren_expression, @@ -78217,533 +83724,861 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_item, sym_null_coalesce, sym_string, - [69894] = 25, - ACTIONS(1041), 1, + [73538] = 4, + ACTIONS(1467), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1463), 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(1465), 32, + anon_sym_import, anon_sym_DOT, - ACTIONS(1047), 1, + anon_sym_as, + anon_sym_assert, + anon_sym_if, + anon_sym_else, anon_sym_lambda, - ACTIONS(1061), 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, + [73608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1599), 26, + sym__dedent, sym_string_start, - ACTIONS(1163), 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(1597), 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(1165), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [73676] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1601), 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(1603), 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(1627), 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, + [73744] = 4, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 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(1605), 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, + [73814] = 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, - ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1639), 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(1006), 1, - sym_primary_expression, - STATE(1043), 1, - sym_expression, - STATE(1068), 1, - sym_selector_expression, - STATE(2407), 1, - sym_dotted_name, - STATE(2983), 1, - sym_quant_op, + ACTIONS(1611), 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, + [73882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1081), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1635), 3, + ACTIONS(1615), 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(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1613), 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, + [73950] = 4, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 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(1605), 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, + [74020] = 4, + STATE(873), 1, + aux_sym_comparison_operator_repeat1, + 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(1619), 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(1080), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1059), 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(1098), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1071), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70006] = 25, - ACTIONS(886), 1, - anon_sym_DOT, - ACTIONS(892), 1, - anon_sym_lambda, - ACTIONS(906), 1, + [74090] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 26, + sym__dedent, sym_string_start, - ACTIONS(1175), 1, - sym_identifier, - ACTIONS(1177), 1, - anon_sym_not, - ACTIONS(1611), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1613), 1, anon_sym_LBRACK, - ACTIONS(1615), 1, anon_sym_LBRACE, - ACTIONS(1617), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - sym_float, - STATE(1575), 1, - sym_primary_expression, - STATE(1605), 1, - sym_selector_expression, - STATE(2294), 1, - sym_expression, - STATE(2445), 1, - sym_dotted_name, - STATE(3106), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1830), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1619), 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(1831), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1621), 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(1829), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(904), 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(1832), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1835), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70118] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [74158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 26, + 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(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(981), 1, - anon_sym_not, - STATE(1405), 1, - sym_expression, - STATE(1416), 1, - sym_primary_expression, - STATE(1543), 1, - sym_selector_expression, - STATE(2404), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1621), 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(1729), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70230] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [74226] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1615), 26, + 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(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(981), 1, - anon_sym_not, - STATE(1414), 1, - sym_expression, - STATE(1416), 1, - sym_primary_expression, - STATE(1543), 1, - sym_selector_expression, - STATE(2404), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1613), 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(1729), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70342] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [74294] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1609), 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_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(981), 1, - anon_sym_not, - STATE(1416), 1, - sym_primary_expression, - STATE(1431), 1, - sym_expression, - STATE(1543), 1, - sym_selector_expression, - STATE(2404), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1611), 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(1729), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70454] = 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(973), 1, - sym_identifier, - ACTIONS(981), 1, - anon_sym_not, - STATE(1416), 1, - sym_primary_expression, - STATE(1429), 1, - sym_expression, - STATE(1543), 1, - sym_selector_expression, - STATE(2404), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, + [74362] = 4, + STATE(884), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1607), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1729), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70566] = 3, + [74432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1523), 26, + ACTIONS(1601), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -78770,7 +84605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1525), 33, + ACTIONS(1603), 33, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -78804,4624 +84639,3788 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [70634] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [74500] = 4, + STATE(901), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 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_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(981), 1, - anon_sym_not, - STATE(1400), 1, - sym_expression, - STATE(1416), 1, - sym_primary_expression, - STATE(1543), 1, - sym_selector_expression, - STATE(2404), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1729), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70746] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [74570] = 4, + STATE(927), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 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_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(981), 1, - anon_sym_not, - STATE(1416), 1, - sym_primary_expression, - STATE(1428), 1, - sym_expression, - STATE(1543), 1, - sym_selector_expression, - STATE(2404), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1729), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70858] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [74640] = 8, + ACTIONS(1632), 1, + anon_sym_not, + ACTIONS(1638), 1, + anon_sym_is, + STATE(872), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1629), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1635), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 22, + 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_QMARK_LBRACK, sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, + ACTIONS(1625), 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, - ACTIONS(981), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [74718] = 8, + ACTIONS(1644), 1, anon_sym_not, - STATE(1416), 1, - sym_primary_expression, - STATE(1419), 1, - sym_expression, - STATE(1543), 1, - sym_selector_expression, - STATE(2404), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, + ACTIONS(1650), 1, + anon_sym_is, + STATE(873), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1641), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1647), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 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, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - ACTIONS(27), 4, + anon_sym_QMARK_LBRACK, + sym_float, + ACTIONS(1625), 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, - STATE(1729), 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, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - STATE(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [70970] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [74796] = 4, + STATE(626), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1653), 26, + 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(690), 1, - sym_identifier, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2268), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1655), 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(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71082] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [74866] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1657), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, - anon_sym_not, - STATE(1618), 1, - sym_primary_expression, - STATE(1641), 1, - sym_expression, - STATE(1854), 1, - sym_selector_expression, - STATE(2413), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1659), 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(1975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71194] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [74934] = 4, + STATE(1117), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, - anon_sym_not, - STATE(1618), 1, - sym_primary_expression, - STATE(1734), 1, - sym_expression, - STATE(1854), 1, - sym_selector_expression, - STATE(2413), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71306] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [75004] = 4, + STATE(872), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1617), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, - sym_identifier, - STATE(1650), 1, - sym_expression, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2472), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1619), 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(1979), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71418] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [75074] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1661), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, - anon_sym_not, - STATE(1618), 1, - sym_primary_expression, - STATE(1650), 1, - sym_expression, - STATE(1854), 1, - sym_selector_expression, - STATE(2413), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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), 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(1975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71530] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [75142] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1667), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, - anon_sym_not, - STATE(1612), 1, - sym_expression, - STATE(1618), 1, - sym_primary_expression, - STATE(1854), 1, - sym_selector_expression, - STATE(2413), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1665), 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(1975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71642] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [75210] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, - anon_sym_not, - STATE(1618), 1, - sym_primary_expression, - STATE(1647), 1, - sym_expression, - STATE(1854), 1, - sym_selector_expression, - STATE(2413), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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), 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(1975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71754] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [75278] = 4, + STATE(938), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, - anon_sym_not, - STATE(1618), 1, - sym_primary_expression, - STATE(1720), 1, - sym_expression, - STATE(1854), 1, - sym_selector_expression, - STATE(2413), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71866] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [75348] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1661), 26, + sym__dedent, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, - anon_sym_not, - STATE(1618), 1, - sym_primary_expression, - STATE(1622), 1, - sym_expression, - STATE(1854), 1, - sym_selector_expression, - STATE(2413), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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), 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(1975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [71978] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [75416] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1667), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(995), 1, - sym_identifier, - ACTIONS(1003), 1, - anon_sym_not, - STATE(1617), 1, - sym_expression, - STATE(1618), 1, - sym_primary_expression, - STATE(1854), 1, - sym_selector_expression, - STATE(2413), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1665), 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(1975), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [72090] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [75484] = 4, + STATE(873), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1617), 26, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(1483), 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(1641), 1, - sym_identifier, - STATE(358), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, + ACTIONS(1619), 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, + [75554] = 4, + STATE(872), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 3, + 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, - STATE(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1619), 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(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [72202] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [75624] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1673), 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(1013), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1155), 1, - sym_expression, - STATE(1387), 1, - sym_primary_expression, - STATE(1399), 1, - sym_selector_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1675), 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(1526), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [72314] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [75692] = 4, + STATE(1109), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 26, + sym__dedent, sym_string_start, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - ACTIONS(1661), 1, - anon_sym_not, - STATE(358), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [72426] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [75762] = 4, + ACTIONS(1580), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1463), 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(1013), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1156), 1, - sym_expression, - STATE(1387), 1, - sym_primary_expression, - STATE(1399), 1, - sym_selector_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1465), 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(1526), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [72538] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [75832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1657), 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(1013), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1385), 1, - sym_expression, - STATE(1387), 1, - sym_primary_expression, - STATE(1399), 1, - sym_selector_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1659), 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(1526), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [72650] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [75900] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 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(1013), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1325), 1, - sym_expression, - STATE(1387), 1, - sym_primary_expression, - STATE(1399), 1, - sym_selector_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1475), 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(1526), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [72762] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [75968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1599), 26, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, - anon_sym_DQUOTE, - ACTIONS(1521), 1, - sym_float, - STATE(1210), 1, - sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2321), 1, - sym_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(3146), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1372), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1517), 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(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1597), 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(1371), 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(1376), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1377), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [72874] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [76036] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1677), 26, sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1471), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - STATE(327), 1, - sym_primary_expression, - STATE(640), 1, - sym_selector_expression, - STATE(1144), 1, - sym_expression, - STATE(2452), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1679), 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(900), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [72986] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [76104] = 4, + STATE(873), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1617), 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(1013), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1338), 1, - sym_expression, - STATE(1387), 1, - sym_primary_expression, - STATE(1399), 1, - sym_selector_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1619), 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(1526), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73098] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [76174] = 4, + STATE(873), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1617), 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(1013), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1328), 1, - sym_expression, - STATE(1387), 1, - sym_primary_expression, - STATE(1399), 1, - sym_selector_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1619), 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(1526), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73210] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [76244] = 4, + STATE(798), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1653), 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(1013), 1, - sym_identifier, - ACTIONS(1015), 1, - anon_sym_not, - STATE(1386), 1, - sym_expression, - STATE(1387), 1, - sym_primary_expression, - STATE(1399), 1, - sym_selector_expression, - STATE(2496), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1655), 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(1526), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73322] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [76314] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 26, sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1471), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - STATE(327), 1, - sym_primary_expression, - STATE(640), 1, - sym_selector_expression, - STATE(1145), 1, - sym_expression, - STATE(2452), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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), 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(900), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73434] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(961), 1, - anon_sym_not, - ACTIONS(971), 1, + [76382] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1677), 26, + sym__dedent, sym_string_start, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - STATE(384), 1, - sym_expression, - STATE(392), 1, - sym_primary_expression, - STATE(694), 1, - sym_selector_expression, - STATE(2462), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1679), 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(969), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73546] = 25, - ACTIONS(758), 1, - anon_sym_DOT, - ACTIONS(762), 1, + [76450] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1473), 26, + sym_string_start, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(766), 1, anon_sym_LBRACK, - ACTIONS(768), 1, - anon_sym_lambda, - ACTIONS(770), 1, anon_sym_LBRACE, - ACTIONS(772), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(774), 1, - anon_sym_not, - ACTIONS(778), 1, - anon_sym_DQUOTE, - ACTIONS(782), 1, - sym_float, - ACTIONS(784), 1, - sym_string_start, - ACTIONS(1153), 1, - sym_identifier, - STATE(1734), 1, - sym_expression, - STATE(1750), 1, - sym_primary_expression, - STATE(1853), 1, - sym_selector_expression, - STATE(2472), 1, - sym_dotted_name, - STATE(3189), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1936), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(776), 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(1987), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1475), 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(1979), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(780), 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(1988), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1992), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73658] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [76518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1673), 26, + sym__dedent, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(360), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1675), 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(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73770] = 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(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, - anon_sym_not, - STATE(1553), 1, - sym_expression, - STATE(1564), 1, - sym_primary_expression, - STATE(1726), 1, - sym_selector_expression, - STATE(2470), 1, - sym_dotted_name, - STATE(3016), 1, - sym_quant_op, + [76586] = 4, + STATE(872), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + 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, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1619), 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(1848), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1849), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73882] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + [76656] = 4, + STATE(872), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1617), 26, + sym__dedent, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - 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, - STATE(1334), 1, - sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2441), 1, - sym_expression, - STATE(2501), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1619), 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(1537), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [73994] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, + [76726] = 5, + ACTIONS(1681), 1, + anon_sym_in, + ACTIONS(1683), 1, anon_sym_not, - ACTIONS(431), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 26, + sym__dedent, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, - anon_sym_DQUOTE, - ACTIONS(1521), 1, - sym_float, - STATE(1210), 1, - sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2310), 1, - sym_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(3146), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1372), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1517), 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(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1371), 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_and, + anon_sym_or, + 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(1376), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1377), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [74106] = 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(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, - anon_sym_not, - STATE(1564), 1, - sym_primary_expression, - STATE(1595), 1, - sym_expression, - STATE(1726), 1, - sym_selector_expression, - STATE(2470), 1, - sym_dotted_name, - STATE(3016), 1, - sym_quant_op, + [76797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1685), 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(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1687), 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(1848), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1849), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [74218] = 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(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, + [76864] = 5, + ACTIONS(1689), 1, + anon_sym_in, + ACTIONS(1691), 1, anon_sym_not, - STATE(1533), 1, - sym_expression, - STATE(1564), 1, - sym_primary_expression, - STATE(1726), 1, - sym_selector_expression, - STATE(2470), 1, - sym_dotted_name, - STATE(3016), 1, - sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1607), 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(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1848), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1849), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [74330] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [76935] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 26, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(361), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [74442] = 25, - ACTIONS(401), 1, - anon_sym_DOT, - ACTIONS(411), 1, - anon_sym_lambda, - ACTIONS(419), 1, - anon_sym_not, - ACTIONS(431), 1, + [77002] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1693), 26, sym_string_start, - ACTIONS(1169), 1, - sym_identifier, - ACTIONS(1509), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1513), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1519), 1, - anon_sym_DQUOTE, - ACTIONS(1521), 1, - sym_float, - STATE(1210), 1, - sym_primary_expression, - STATE(1253), 1, - sym_selector_expression, - STATE(2389), 1, - sym_expression, - STATE(2454), 1, - sym_dotted_name, - STATE(3146), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1372), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1517), 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(1373), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1695), 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(1371), 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(1376), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1377), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [74554] = 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(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, - anon_sym_not, - STATE(1485), 1, - sym_expression, - STATE(1564), 1, - sym_primary_expression, - STATE(1726), 1, - sym_selector_expression, - STATE(2470), 1, - sym_dotted_name, - STATE(3016), 1, - sym_quant_op, + [77069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1699), 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(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1697), 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(1848), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1849), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [74666] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [77136] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1703), 26, + sym__dedent, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(362), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1701), 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(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [74778] = 25, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1047), 1, - anon_sym_lambda, - ACTIONS(1061), 1, + [77203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1321), 26, + sym__dedent, sym_string_start, - ACTIONS(1163), 1, - sym_identifier, - ACTIONS(1165), 1, - anon_sym_not, - ACTIONS(1627), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1629), 1, anon_sym_LBRACK, - ACTIONS(1631), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1637), 1, - anon_sym_DQUOTE, - ACTIONS(1639), 1, - sym_float, - STATE(1006), 1, - sym_primary_expression, - STATE(1068), 1, - sym_selector_expression, - STATE(1971), 1, - sym_expression, - STATE(2407), 1, - sym_dotted_name, - STATE(2983), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1081), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1635), 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(1129), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1319), 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(1080), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(1059), 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(1098), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1071), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [74890] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + [77270] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1707), 26, + sym__dedent, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - 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, - STATE(1334), 1, - sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2403), 1, - sym_expression, - STATE(2501), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1705), 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(1537), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [75002] = 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(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, + [77337] = 5, + ACTIONS(1709), 1, + anon_sym_in, + ACTIONS(1711), 1, anon_sym_not, - STATE(1530), 1, - sym_expression, - STATE(1564), 1, - sym_primary_expression, - STATE(1726), 1, - sym_selector_expression, - STATE(2470), 1, - sym_dotted_name, - STATE(3016), 1, - sym_quant_op, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1607), 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(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1848), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1849), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [75114] = 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(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, - anon_sym_not, - STATE(1477), 1, - sym_expression, - STATE(1564), 1, - sym_primary_expression, - STATE(1726), 1, - sym_selector_expression, - STATE(2470), 1, - sym_dotted_name, - STATE(3016), 1, - sym_quant_op, + [77408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + 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, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1848), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1849), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [75226] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [77475] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1717), 26, sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1471), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - STATE(327), 1, - sym_primary_expression, - STATE(640), 1, - sym_selector_expression, - STATE(1147), 1, - sym_expression, - STATE(2452), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(900), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [75338] = 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(184), 1, - anon_sym_LBRACK, - ACTIONS(1021), 1, - sym_identifier, - ACTIONS(1029), 1, - anon_sym_not, - STATE(1474), 1, - sym_expression, - STATE(1564), 1, - sym_primary_expression, - STATE(1726), 1, - sym_selector_expression, - STATE(2470), 1, - sym_dotted_name, - STATE(3016), 1, - sym_quant_op, + [77542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + 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, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1848), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1849), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [75450] = 25, - ACTIONS(13), 1, - anon_sym_DOT, - ACTIONS(19), 1, + [77609] = 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, - ACTIONS(23), 1, - anon_sym_lambda, - ACTIONS(25), 1, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(43), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(49), 1, + anon_sym_PLUS, anon_sym_DQUOTE, - ACTIONS(53), 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(55), 1, - sym_string_start, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(1069), 1, + 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, - ACTIONS(1537), 1, - sym_identifier, - STATE(1571), 1, - sym_primary_expression, - STATE(1768), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2527), 1, - sym_expression, - STATE(3016), 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, + [77676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + ACTIONS(1607), 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(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1896), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [75562] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [77743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1693), 26, + sym__dedent, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(363), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1695), 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(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [75674] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [77810] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1731), 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(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2318), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [75786] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(503), 1, + [77877] = 5, + ACTIONS(1681), 1, + anon_sym_in, + ACTIONS(1733), 1, + anon_sym_not, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 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(1069), 1, - anon_sym_not, - ACTIONS(1575), 1, + ACTIONS(1605), 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, - STATE(1209), 1, - sym_selector_expression, - STATE(1310), 1, - sym_primary_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2526), 1, - sym_expression, - STATE(3210), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [77948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 3, + ACTIONS(1717), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1252), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [75898] = 25, - ACTIONS(483), 1, - anon_sym_DOT, - ACTIONS(489), 1, - anon_sym_lambda, - ACTIONS(493), 1, - anon_sym_not, - ACTIONS(503), 1, + [78015] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1721), 26, + sym__dedent, sym_string_start, - ACTIONS(545), 1, - sym_identifier, - 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, - STATE(1334), 1, - sym_primary_expression, - STATE(1456), 1, - sym_selector_expression, - STATE(2252), 1, - sym_expression, - STATE(2501), 1, - sym_dotted_name, - STATE(3210), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(559), 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(1283), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1537), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(501), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1279), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [76010] = 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(184), 1, - anon_sym_LBRACK, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1537), 1, - sym_identifier, - STATE(1576), 1, - sym_primary_expression, - STATE(1768), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2542), 1, - sym_expression, - STATE(3016), 1, - sym_quant_op, + [78082] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + 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, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1896), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [76122] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [78149] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1731), 26, + sym__dedent, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(364), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [76234] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [78216] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1737), 26, + sym__dedent, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(366), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [76346] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [78283] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1741), 26, + sym__dedent, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(368), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [76458] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [78350] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1745), 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(1069), 1, + 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, - 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, - STATE(1432), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2529), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [78417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + 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, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [76570] = 4, - STATE(891), 1, - aux_sym_comparison_operator_repeat1, + [78484] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 26, + ACTIONS(1607), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -83448,7 +88447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1663), 32, + ACTIONS(1605), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83481,15 +88480,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76640] = 4, - STATE(891), 1, - aux_sym_comparison_operator_repeat1, + [78551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 26, - sym__dedent, + ACTIONS(1741), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -83514,7 +88511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1663), 32, + ACTIONS(1739), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83547,15 +88544,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76710] = 4, - STATE(891), 1, - aux_sym_comparison_operator_repeat1, + [78618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 26, - sym__dedent, + ACTIONS(1751), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -83580,7 +88575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1663), 32, + ACTIONS(1753), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83613,13 +88608,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76780] = 4, - STATE(891), 1, - aux_sym_comparison_operator_repeat1, + [78685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 26, + ACTIONS(1757), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -83646,7 +88639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1663), 32, + ACTIONS(1755), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83679,15 +88672,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76850] = 4, - STATE(521), 1, - aux_sym_comparison_operator_repeat1, + [78752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 26, + ACTIONS(1761), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -83712,7 +88703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1663), 32, + ACTIONS(1759), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83745,15 +88736,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76920] = 4, - STATE(521), 1, - aux_sym_comparison_operator_repeat1, + [78819] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 26, + ACTIONS(1765), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -83778,7 +88767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1663), 32, + ACTIONS(1763), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83811,15 +88800,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [76990] = 4, - STATE(521), 1, - aux_sym_comparison_operator_repeat1, + [78886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 26, + ACTIONS(1769), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -83844,7 +88831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1663), 32, + ACTIONS(1767), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83877,15 +88864,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77060] = 4, - STATE(521), 1, - aux_sym_comparison_operator_repeat1, + [78953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 26, + ACTIONS(1773), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -83910,7 +88895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1663), 32, + ACTIONS(1771), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -83943,1681 +88928,1551 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [77130] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79020] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1777), 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(1069), 1, + 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, - 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, - STATE(1462), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [79087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + 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, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [77242] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79154] = 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, - 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_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1505), 1, - sym_identifier, - ACTIONS(1667), 1, - anon_sym_not, - STATE(1462), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [77354] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79221] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1765), 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(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2258), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1763), 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(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [77466] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79288] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1781), 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(527), 1, - anon_sym_not, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(690), 1, - sym_identifier, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2257), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [77578] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79355] = 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, - 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_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(973), 1, - sym_identifier, - ACTIONS(981), 1, - anon_sym_not, - STATE(1416), 1, - sym_primary_expression, - STATE(1446), 1, - sym_expression, - STATE(1543), 1, - sym_selector_expression, - STATE(2404), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1729), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [77690] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79422] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1789), 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_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1505), 1, - sym_identifier, - STATE(1443), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [77802] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79489] = 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, - 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(1069), 1, + 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, - 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, - STATE(1442), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [79556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1685), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1687), 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(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [77914] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79623] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1793), 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(1069), 1, + 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, - ACTIONS(1505), 1, - sym_identifier, - STATE(1441), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 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, + [79690] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + 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, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [78026] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1797), 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_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1505), 1, - sym_identifier, - STATE(1440), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [78138] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79824] = 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, - 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_DQUOTE, - ACTIONS(537), 1, - sym_float, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1505), 1, - sym_identifier, - STATE(1438), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [78250] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [79891] = 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, - 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(1069), 1, + 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, - 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, - STATE(1437), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [79958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + 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, - STATE(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [78362] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [80025] = 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(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(1069), 1, + 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, - 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, - STATE(1435), 1, - sym_primary_expression, - STATE(1577), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2510), 1, - sym_expression, - STATE(3161), 1, - sym_quant_op, + sym_true, + sym_false, + sym_none, + sym_undefined, + [80092] = 5, + ACTIONS(1709), 1, + anon_sym_in, + ACTIONS(1803), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 3, + ACTIONS(1607), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1605), 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(1659), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [78474] = 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(184), 1, - anon_sym_LBRACK, - STATE(1569), 1, - sym_primary_expression, - STATE(1770), 1, - sym_selector_expression, - STATE(2303), 1, - sym_expression, - STATE(2401), 1, - sym_dotted_name, - STATE(3016), 1, - sym_quant_op, + [80163] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(47), 3, + 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, - STATE(1820), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1924), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(51), 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(1849), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1875), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [78586] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [80230] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1797), 26, sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1471), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - STATE(327), 1, - sym_primary_expression, - STATE(355), 1, - sym_expression, - STATE(640), 1, - sym_selector_expression, - STATE(2452), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(900), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [78698] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [80297] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1807), 26, + sym__dedent, sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - STATE(310), 1, - sym_expression, - STATE(327), 1, - sym_primary_expression, - STATE(640), 1, - sym_selector_expression, - STATE(2452), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1805), 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(900), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [78810] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [80364] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1811), 26, + sym__dedent, sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - STATE(327), 1, - sym_primary_expression, - STATE(640), 1, - sym_selector_expression, - STATE(1138), 1, - sym_expression, - STATE(2452), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1809), 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(900), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [78922] = 25, - ACTIONS(949), 1, - sym_identifier, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(961), 1, - anon_sym_not, - ACTIONS(971), 1, + [80431] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1813), 26, sym_string_start, - ACTIONS(1471), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - STATE(376), 1, - sym_expression, - STATE(392), 1, - sym_primary_expression, - STATE(694), 1, - sym_selector_expression, - STATE(2462), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(969), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [79034] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [80498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1819), 26, + sym__dedent, sym_string_start, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1139), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - STATE(327), 1, - sym_primary_expression, - STATE(640), 1, - sym_selector_expression, - STATE(1137), 1, - sym_expression, - STATE(2452), 1, - sym_dotted_name, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(899), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1817), 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(900), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(897), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [79146] = 25, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(509), 1, + [80565] = 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, - 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(690), 1, - sym_identifier, - STATE(1408), 1, - sym_primary_expression, - STATE(1592), 1, - sym_selector_expression, - STATE(2345), 1, - sym_expression, - STATE(2411), 1, - sym_dotted_name, - STATE(3161), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1793), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(529), 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(1794), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(1792), 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(1798), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(1799), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [79258] = 8, - ACTIONS(1672), 1, - anon_sym_not, - ACTIONS(1678), 1, - anon_sym_is, - STATE(891), 1, - aux_sym_comparison_operator_repeat1, + [80632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1675), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1543), 22, - sym__dedent, + ACTIONS(1825), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -85636,9 +90491,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(1545), 27, + ACTIONS(1827), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -85646,6 +90505,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, @@ -85657,196 +90517,154 @@ 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, - [79336] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [80699] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1831), 26, + sym__dedent, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(374), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2517), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(1829), 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(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [79448] = 25, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(957), 1, - anon_sym_lambda, - ACTIONS(971), 1, + [80766] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1833), 26, sym_string_start, - ACTIONS(1069), 1, - anon_sym_not, - ACTIONS(1471), 1, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1473), 1, anon_sym_LBRACK, - ACTIONS(1475), 1, anon_sym_LBRACE, - ACTIONS(1477), 1, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(1481), 1, - anon_sym_DQUOTE, - ACTIONS(1483), 1, - sym_float, - ACTIONS(1641), 1, - sym_identifier, - STATE(373), 1, - sym_primary_expression, - STATE(760), 1, - sym_selector_expression, - STATE(2414), 1, - sym_dotted_name, - STATE(2511), 1, - sym_expression, - STATE(2965), 1, - sym_quant_op, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1248), 2, - sym_in_operation, - sym_not_in_operation, - ACTIONS(1479), 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(898), 3, - sym_binary_operator, - sym_subscript, - sym_call, - 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(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, - STATE(926), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - ACTIONS(969), 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(1281), 7, - sym_as_expression, - sym_not_operator, - sym_boolean_operator, - sym_long_expression, - sym_sequence_operation, - sym_comparison_operator, - sym_conditional_expression, - STATE(896), 15, - 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_attribute_declaration, - sym_optional_item, - sym_null_coalesce, - sym_string, - [79560] = 3, + [80833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 26, - sym__dedent, + ACTIONS(1837), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -85871,7 +90689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1681), 32, + ACTIONS(1839), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -85904,11 +90722,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79627] = 3, + [80900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 26, + ACTIONS(1811), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -85935,7 +90753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1687), 32, + ACTIONS(1809), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -85968,13 +90786,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79694] = 3, + [80967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, - sym__dedent, + ACTIONS(1807), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -85999,7 +90817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 32, + ACTIONS(1805), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86032,13 +90850,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79761] = 3, + [81034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1328), 26, - sym__dedent, + ACTIONS(1841), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86063,7 +90881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1284), 32, + ACTIONS(1843), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86096,13 +90914,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79828] = 3, + [81101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, - sym__dedent, + ACTIONS(1801), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86127,7 +90945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 32, + ACTIONS(1799), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86160,11 +90978,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79895] = 3, + [81168] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 26, + ACTIONS(1833), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -86191,7 +91009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1689), 32, + ACTIONS(1835), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86224,77 +91042,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [79962] = 5, - ACTIONS(1693), 1, - anon_sym_in, - ACTIONS(1695), 1, - anon_sym_not, + [81235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 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(1601), 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, - [80033] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1699), 26, + ACTIONS(1725), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -86321,7 +91073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1697), 32, + ACTIONS(1727), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86354,13 +91106,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80100] = 3, + [81302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 26, - sym__dedent, + ACTIONS(1845), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86385,7 +91137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1701), 32, + ACTIONS(1847), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86418,11 +91170,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80167] = 3, + [81369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 26, + ACTIONS(1851), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -86449,7 +91201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1705), 32, + ACTIONS(1849), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86482,13 +91234,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80234] = 3, + [81436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1845), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86513,7 +91265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 32, + ACTIONS(1847), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86546,13 +91298,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80301] = 3, + [81503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1328), 26, + ACTIONS(1841), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86577,7 +91329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1284), 32, + ACTIONS(1843), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86610,13 +91362,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80368] = 3, + [81570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1837), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86641,7 +91393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 32, + ACTIONS(1839), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86674,13 +91426,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80435] = 3, + [81637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 26, + ACTIONS(1825), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -86705,7 +91457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1689), 32, + ACTIONS(1827), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86738,15 +91490,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80502] = 5, - ACTIONS(1709), 1, + [81704] = 5, + ACTIONS(1689), 1, anon_sym_in, - ACTIONS(1711), 1, + ACTIONS(1691), 1, anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1607), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86773,7 +91525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 30, + ACTIONS(1605), 30, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86804,11 +91556,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80573] = 3, + [81775] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 26, + ACTIONS(1321), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86835,7 +91587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1697), 32, + ACTIONS(1319), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86868,11 +91620,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80640] = 3, + [81842] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 26, + ACTIONS(1819), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86899,7 +91651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1701), 32, + ACTIONS(1817), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86932,11 +91684,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80707] = 3, + [81909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 26, + ACTIONS(1607), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -86963,7 +91715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1705), 32, + ACTIONS(1605), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -86996,11 +91748,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80774] = 3, + [81976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 26, + ACTIONS(1831), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87027,7 +91779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1681), 32, + ACTIONS(1829), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87060,77 +91812,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [80841] = 5, - ACTIONS(1713), 1, - anon_sym_in, - ACTIONS(1715), 1, - anon_sym_not, + [82043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 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(1601), 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, - [80912] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1719), 26, + ACTIONS(1821), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -87157,71 +91843,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [80979] = 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(1717), 32, + ACTIONS(1823), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87254,13 +91876,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81046] = 3, + [82110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 26, + ACTIONS(1855), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87285,7 +91907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1723), 32, + ACTIONS(1853), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87318,13 +91940,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81113] = 3, + [82177] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 26, + ACTIONS(1859), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87349,7 +91971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1727), 32, + ACTIONS(1857), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87382,13 +92004,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81180] = 3, + [82244] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 26, + ACTIONS(1863), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87413,7 +92035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1731), 32, + ACTIONS(1861), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87446,11 +92068,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81247] = 3, + [82311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1733), 26, + ACTIONS(1725), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87477,7 +92099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1735), 32, + ACTIONS(1727), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87510,13 +92132,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81314] = 3, + [82378] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 26, + ACTIONS(1867), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87541,7 +92163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1739), 32, + ACTIONS(1865), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87574,13 +92196,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81381] = 3, + [82445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 26, - sym__dedent, + ACTIONS(1789), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87605,7 +92227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1723), 32, + ACTIONS(1787), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87638,11 +92260,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81448] = 3, + [82512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 26, + ACTIONS(1871), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -87669,7 +92291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1727), 32, + ACTIONS(1869), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87702,13 +92324,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81515] = 3, + [82579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1741), 26, + ACTIONS(1813), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87733,7 +92355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1743), 32, + ACTIONS(1815), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87766,11 +92388,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81582] = 3, + [82646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1745), 26, + ACTIONS(1851), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -87797,7 +92419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1747), 32, + ACTIONS(1849), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87830,13 +92452,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81649] = 3, + [82713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1749), 26, + ACTIONS(1875), 26, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87861,7 +92483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1751), 32, + ACTIONS(1873), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87894,17 +92516,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81716] = 5, - ACTIONS(1713), 1, - anon_sym_in, - ACTIONS(1715), 1, - anon_sym_not, + [82780] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1599), 26, - sym__dedent, + ACTIONS(1855), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87929,7 +92547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 30, + ACTIONS(1853), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -87937,6 +92555,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, @@ -87948,6 +92567,7 @@ 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, @@ -87960,13 +92580,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81787] = 3, + [82847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 26, - sym__dedent, + ACTIONS(1859), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -87991,7 +92611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1739), 32, + ACTIONS(1857), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88024,13 +92644,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81854] = 3, + [82914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1741), 26, - sym__dedent, + ACTIONS(1863), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88055,7 +92675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1743), 32, + ACTIONS(1861), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88088,11 +92708,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81921] = 3, + [82981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1753), 26, + ACTIONS(1867), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88119,7 +92739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1755), 32, + ACTIONS(1865), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88152,11 +92772,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [81988] = 3, + [83048] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1757), 26, + ACTIONS(1871), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88183,7 +92803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1759), 32, + ACTIONS(1869), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88216,11 +92836,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82055] = 3, + [83115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 26, + ACTIONS(1875), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88247,7 +92867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1763), 32, + ACTIONS(1873), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88280,11 +92900,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82122] = 3, + [83182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 26, + ACTIONS(1699), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88311,7 +92931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1767), 32, + ACTIONS(1697), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88344,13 +92964,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82189] = 3, + [83249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 26, - sym__dedent, + ACTIONS(1765), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88375,7 +92995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1731), 32, + ACTIONS(1763), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88408,13 +93028,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82256] = 3, + [83316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1733), 26, - sym__dedent, + ACTIONS(1703), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88439,7 +93059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1735), 32, + ACTIONS(1701), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88472,13 +93092,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82323] = 3, + [83383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1753), 26, - sym__dedent, + ACTIONS(1765), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88503,7 +93123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1755), 32, + ACTIONS(1763), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88536,13 +93156,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82390] = 3, + [83450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1757), 26, - sym__dedent, + ACTIONS(1707), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88567,7 +93187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1759), 32, + ACTIONS(1705), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88600,13 +93220,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82457] = 3, + [83517] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1761), 26, - sym__dedent, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88631,7 +93251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1763), 32, + ACTIONS(1759), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88664,13 +93284,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82524] = 3, + [83584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 26, - sym__dedent, + ACTIONS(1715), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88695,7 +93315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1767), 32, + ACTIONS(1713), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88728,13 +93348,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82591] = 3, + [83651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 26, - sym__dedent, + ACTIONS(1731), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88759,7 +93379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1769), 32, + ACTIONS(1729), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88792,11 +93412,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82658] = 3, + [83718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 26, + ACTIONS(1731), 26, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -88823,7 +93443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1769), 32, + ACTIONS(1729), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88856,11 +93476,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82725] = 3, + [83785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 26, + ACTIONS(1783), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -88887,7 +93507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1773), 32, + ACTIONS(1785), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88920,13 +93540,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82792] = 3, + [83852] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 26, - sym__dedent, + ACTIONS(1737), 26, sym_string_start, + ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -88951,7 +93571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1777), 32, + ACTIONS(1735), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -88984,11 +93604,11 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82859] = 3, + [83919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1783), 26, + ACTIONS(1751), 26, sym__dedent, sym_string_start, anon_sym_COMMA, @@ -89015,7 +93635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1781), 32, + ACTIONS(1753), 32, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -89048,44 +93668,24 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82926] = 3, + [83986] = 8, + ACTIONS(1877), 1, + sym_isMutableFlag, + ACTIONS(1879), 1, + anon_sym_QMARK_COLON, + STATE(1093), 1, + sym_dict_expr, + STATE(1223), 1, + aux_sym_comparison_operator_repeat1, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 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, + ACTIONS(746), 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, @@ -89093,12 +93693,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89112,19 +93706,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [82993] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1787), 26, - sym__dedent, + ACTIONS(744), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -89143,13 +93732,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1785), 32, - anon_sym_import, + [84058] = 8, + ACTIONS(1877), 1, + sym_isMutableFlag, + ACTIONS(1879), 1, + anon_sym_QMARK_COLON, + STATE(1093), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2239), 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_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -89157,12 +93757,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89176,19 +93770,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83060] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1791), 26, - sym__dedent, + ACTIONS(744), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -89207,56 +93796,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1789), 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, - [83127] = 3, + [84130] = 11, + ACTIONS(1469), 1, + anon_sym_EQ, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, + sym_isMutableFlag, + ACTIONS(1885), 1, + anon_sym_QMARK_COLON, + STATE(1855), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2222), 1, + aux_sym_comparison_operator_repeat1, 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, + ACTIONS(1471), 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_AT, - 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, @@ -89264,20 +93841,46 @@ 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, + anon_sym_GT, + ACTIONS(744), 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, - sym_float, - ACTIONS(1795), 32, - anon_sym_import, + [84208] = 8, + ACTIONS(1877), 1, + sym_isMutableFlag, + ACTIONS(1879), 1, + anon_sym_QMARK_COLON, + STATE(1071), 1, + aux_sym_comparison_operator_repeat1, + STATE(1093), 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_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -89285,12 +93888,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89304,19 +93901,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83194] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1797), 26, + ACTIONS(744), 25, 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, @@ -89335,13 +93927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1799), 32, - anon_sym_import, + [84280] = 4, + STATE(1021), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1469), 24, 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, @@ -89349,12 +93945,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89368,19 +93958,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83261] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1803), 26, - sym__dedent, + ACTIONS(1471), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -89399,56 +93984,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1801), 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, - [83328] = 3, + [84341] = 4, + ACTIONS(1887), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 26, - sym__dedent, + ACTIONS(1503), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -89463,13 +94015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1805), 32, - anon_sym_import, + ACTIONS(1501), 25, 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, @@ -89477,15 +94027,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89496,87 +94041,98 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83395] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1807), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [84402] = 22, + ACTIONS(1453), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + ACTIONS(1889), 1, anon_sym_LPAREN, + ACTIONS(1891), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1895), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1897), 1, anon_sym_QMARK_DOT, + ACTIONS(1903), 1, + anon_sym_PIPE, + ACTIONS(1905), 1, + anon_sym_AMP, + ACTIONS(1907), 1, + anon_sym_CARET, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1899), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(1451), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - ACTIONS(1805), 32, - anon_sym_import, + ACTIONS(1319), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(1447), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1449), 11, 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, - [83462] = 3, + [84499] = 4, + ACTIONS(1913), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 26, - sym__dedent, + ACTIONS(1526), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -89591,13 +94147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1809), 32, - anon_sym_import, + ACTIONS(1524), 25, 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, @@ -89605,15 +94159,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89624,44 +94173,91 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83529] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1815), 26, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + [84560] = 21, + ACTIONS(1889), 1, anon_sym_LPAREN, + ACTIONS(1891), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1895), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1897), 1, anon_sym_QMARK_DOT, + ACTIONS(1903), 1, + anon_sym_PIPE, + ACTIONS(1905), 1, + anon_sym_AMP, + ACTIONS(1907), 1, + anon_sym_CARET, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1917), 1, + anon_sym_not, + ACTIONS(1921), 1, + anon_sym_is, + STATE(1095), 1, + sym_argument_list, + STATE(1220), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1899), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1909), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(1915), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1919), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, + ACTIONS(1321), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, sym_float, - ACTIONS(1813), 32, - anon_sym_import, + ACTIONS(1319), 16, 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_and, + anon_sym_or, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [84655] = 4, + STATE(1037), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1550), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -89669,12 +94265,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89688,23 +94278,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83596] = 5, - ACTIONS(1709), 1, - anon_sym_in, - ACTIONS(1817), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1599), 26, + ACTIONS(1552), 25, 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, @@ -89723,25 +94304,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 30, - anon_sym_import, + [84716] = 22, + ACTIONS(1453), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LBRACK, + ACTIONS(1895), 1, + anon_sym_STAR_STAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOT, + ACTIONS(1903), 1, + anon_sym_PIPE, + ACTIONS(1905), 1, + anon_sym_AMP, + ACTIONS(1907), 1, + anon_sym_CARET, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1899), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1901), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1451), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1319), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(1511), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1509), 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, + [84813] = 4, + STATE(1040), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1459), 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_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, @@ -89754,19 +94410,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83667] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1819), 26, + ACTIONS(1461), 25, 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, @@ -89785,53 +94436,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [83734] = 3, + [84874] = 10, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LBRACK, + ACTIONS(1895), 1, + anon_sym_STAR_STAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOT, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 26, + ACTIONS(1425), 20, 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_RBRACE, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -89847,15 +94474,11 @@ 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(1773), 32, - anon_sym_import, + ACTIONS(1427), 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, @@ -89863,12 +94486,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89882,44 +94499,19 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83801] = 3, + [84947] = 5, + ACTIONS(1923), 1, + anon_sym_PIPE, + STATE(1023), 1, + aux_sym_union_type_repeat1, 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(1747), 32, - anon_sym_import, + ACTIONS(1517), 24, 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, @@ -89927,12 +94519,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -89946,26 +94532,20 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83868] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1823), 26, + ACTIONS(1519), 24, 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, @@ -89977,13 +94557,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1825), 32, - anon_sym_import, + [85010] = 9, + ACTIONS(1074), 1, anon_sym_DOT, + ACTIONS(1309), 1, + anon_sym_QMARK_DOT, + ACTIONS(1926), 1, + anon_sym_and, + ACTIONS(1928), 1, + anon_sym_or, + ACTIONS(1930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1299), 20, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -89991,15 +94584,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90010,25 +94595,63 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [83935] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1829), 26, - sym__dedent, + ACTIONS(1301), 23, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, 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, + [85081] = 13, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LBRACK, + ACTIONS(1895), 1, + anon_sym_STAR_STAR, + ACTIONS(1897), 1, anon_sym_QMARK_DOT, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1899), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1532), 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, @@ -90039,32 +94662,20 @@ 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(1827), 32, - anon_sym_import, + ACTIONS(1530), 21, 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, @@ -90074,61 +94685,64 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84002] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1831), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [85160] = 14, + ACTIONS(1889), 1, anon_sym_LPAREN, + ACTIONS(1891), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1895), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1897), 1, anon_sym_QMARK_DOT, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1899), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(1909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 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_LT_LT, - anon_sym_GT_GT, anon_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(1833), 32, - anon_sym_import, + ACTIONS(1530), 21, 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, @@ -90138,61 +94752,65 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84069] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1835), 26, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, + [85241] = 15, + ACTIONS(1889), 1, anon_sym_LPAREN, + ACTIONS(1891), 1, anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(1895), 1, anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(1897), 1, anon_sym_QMARK_DOT, + ACTIONS(1907), 1, + anon_sym_CARET, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1899), 2, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, + ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1909), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1532), 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, - anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1837), 32, - anon_sym_import, + ACTIONS(1530), 21, 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, @@ -90202,44 +94820,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84136] = 3, + [85324] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 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(1839), 32, - anon_sym_import, + STATE(1042), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1439), 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, @@ -90247,12 +94838,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90266,19 +94851,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84203] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1845), 26, - sym__dedent, + ACTIONS(1437), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -90297,30 +94877,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1843), 32, - anon_sym_import, + [85385] = 16, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LBRACK, + ACTIONS(1895), 1, + anon_sym_STAR_STAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOT, + ACTIONS(1905), 1, + anon_sym_AMP, + ACTIONS(1907), 1, + anon_sym_CARET, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1899), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1901), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 12, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + sym_float, + ACTIONS(1530), 21, 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, @@ -90330,25 +94946,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84270] = 3, + [85470] = 12, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LBRACK, + ACTIONS(1895), 1, + anon_sym_STAR_STAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOT, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 26, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1901), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 18, 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_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, @@ -90359,32 +94988,20 @@ 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(1849), 32, - anon_sym_import, + ACTIONS(1530), 21, 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, @@ -90394,20 +95011,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84337] = 3, + [85547] = 10, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LBRACK, + ACTIONS(1895), 1, + anon_sym_STAR_STAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOT, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 26, - sym__dedent, + ACTIONS(1532), 20, 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_RBRACE, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -90423,15 +95049,11 @@ 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(1705), 32, - anon_sym_import, + ACTIONS(1530), 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, @@ -90439,12 +95061,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90458,20 +95074,29 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84404] = 3, + [85620] = 10, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LBRACK, + ACTIONS(1895), 1, + anon_sym_STAR_STAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOT, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1853), 26, - sym__dedent, + ACTIONS(1532), 20, 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_RBRACE, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -90487,15 +95112,11 @@ 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(1851), 32, - anon_sym_import, + ACTIONS(1530), 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, @@ -90503,12 +95124,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90522,44 +95137,17 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84471] = 3, + [85693] = 4, 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, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1546), 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, @@ -90567,12 +95155,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90586,19 +95168,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84538] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1861), 26, - sym__dedent, + ACTIONS(1548), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -90617,13 +95194,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1859), 32, - anon_sym_import, + [85754] = 22, + ACTIONS(1453), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LBRACK, + ACTIONS(1895), 1, + anon_sym_STAR_STAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOT, + ACTIONS(1903), 1, + anon_sym_PIPE, + ACTIONS(1905), 1, + anon_sym_AMP, + ACTIONS(1907), 1, + anon_sym_CARET, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + STATE(1095), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1899), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1901), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1451), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1455), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1319), 5, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(1515), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1513), 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, + [85851] = 11, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1309), 1, + anon_sym_QMARK_DOT, + ACTIONS(1926), 1, + anon_sym_and, + ACTIONS(1928), 1, + anon_sym_or, + ACTIONS(1930), 1, + anon_sym_PLUS, + ACTIONS(1932), 1, + anon_sym_as, + ACTIONS(1934), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1285), 18, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -90631,15 +95298,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90650,25 +95309,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84605] = 5, - ACTIONS(1693), 1, - anon_sym_in, - ACTIONS(1863), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1599), 26, - sym__dedent, + ACTIONS(1291), 23, sym_string_start, 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, @@ -90685,25 +95333,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1601), 30, - anon_sym_import, + [85926] = 5, + STATE(1036), 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(1475), 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(1473), 32, anon_sym_as, - anon_sym_assert, 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_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, + [85989] = 4, + STATE(1023), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1445), 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_type, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, + anon_sym_filter, + anon_sym_map, + anon_sym_STAR, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_SLASH, @@ -90716,19 +95422,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84676] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1865), 26, + ACTIONS(1443), 25, 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, @@ -90747,13 +95448,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1867), 32, - anon_sym_import, + [86050] = 6, + ACTIONS(1926), 1, + anon_sym_and, + ACTIONS(1930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1497), 22, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -90761,14 +95470,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90780,21 +95482,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84743] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1869), 26, + ACTIONS(1499), 24, 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, @@ -90811,13 +95507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1871), 32, - anon_sym_import, + [86115] = 5, + ACTIONS(1939), 1, + anon_sym_EQ, + STATE(1037), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1465), 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, @@ -90825,12 +95526,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90844,19 +95539,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84810] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1749), 26, - sym__dedent, + ACTIONS(1463), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -90875,13 +95565,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1751), 32, - anon_sym_import, + [86178] = 6, + ACTIONS(1941), 1, anon_sym_DOT, + ACTIONS(1944), 1, + anon_sym_QMARK_DOT, + STATE(1040), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1475), 23, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -90889,12 +95586,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -90908,20 +95599,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [84877] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1861), 26, + ACTIONS(1473), 24, 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, @@ -90939,56 +95624,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [84944] = 3, + [86243] = 4, + ACTIONS(1947), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 26, - sym__dedent, + ACTIONS(1536), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -91003,13 +95655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1871), 32, - anon_sym_import, + ACTIONS(1534), 25, 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, @@ -91017,15 +95667,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91036,20 +95681,48 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85011] = 3, + [86304] = 6, + ACTIONS(1949), 1, + anon_sym_DOT, + ACTIONS(1952), 1, + anon_sym_QMARK_DOT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 26, - sym__dedent, + STATE(1042), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1489), 22, + 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(1487), 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_AT, - anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, @@ -91067,56 +95740,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1867), 32, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, - anon_sym_else, - anon_sym_lambda, + [86369] = 8, + ACTIONS(1926), 1, + anon_sym_and, + ACTIONS(1930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 6, 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, - [85078] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1779), 26, + ACTIONS(1415), 12, 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_TILDE, + sym_float, + ACTIONS(1435), 12, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -91124,36 +95779,55 @@ 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, - sym_float, - ACTIONS(1777), 32, - anon_sym_import, + ACTIONS(1413), 16, 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [86438] = 8, + ACTIONS(1415), 1, + anon_sym_QMARK_DOT, + ACTIONS(1926), 1, anon_sym_and, + ACTIONS(1930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_or, + ACTIONS(1433), 18, + 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_SLASH, anon_sym_LT, anon_sym_GT, @@ -91164,21 +95838,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85145] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1857), 26, + ACTIONS(1435), 23, 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, @@ -91195,13 +95862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1855), 32, - anon_sym_import, + [86507] = 6, + ACTIONS(1926), 1, + anon_sym_and, + ACTIONS(1930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 22, anon_sym_DOT, anon_sym_as, - anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -91209,14 +95884,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91228,21 +95896,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85212] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1853), 26, + ACTIONS(1415), 24, 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, @@ -91259,13 +95921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1851), 32, - anon_sym_import, + [86572] = 4, + STATE(1037), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1517), 24, 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, @@ -91273,12 +95939,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91292,19 +95952,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85279] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1685), 26, - sym__dedent, + ACTIONS(1519), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -91323,13 +95978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1687), 32, - anon_sym_import, + [86633] = 5, + ACTIONS(1930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1417), 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, @@ -91337,12 +95998,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91356,21 +96011,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85346] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1707), 26, + ACTIONS(1419), 24, 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, @@ -91387,13 +96036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1705), 32, - anon_sym_import, + [86696] = 5, + ACTIONS(1930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 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, @@ -91401,12 +96056,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91420,21 +96069,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85413] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1847), 26, - sym__dedent, + ACTIONS(1415), 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_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -91451,13 +96094,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1849), 32, - anon_sym_import, + [86759] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1562), 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, @@ -91465,12 +96112,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91484,19 +96125,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85480] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1835), 26, - sym__dedent, + ACTIONS(1560), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -91515,13 +96151,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1837), 32, - anon_sym_import, + [86820] = 4, + STATE(1037), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1501), 24, 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, @@ -91529,12 +96169,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91548,19 +96182,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85547] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1831), 26, - sym__dedent, + ACTIONS(1503), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -91579,13 +96208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1833), 32, - anon_sym_import, + [86881] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 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, @@ -91593,12 +96226,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91612,19 +96239,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85614] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1823), 26, - sym__dedent, + ACTIONS(1556), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -91643,13 +96265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1825), 32, - anon_sym_import, + [86942] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 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, @@ -91657,12 +96283,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91676,19 +96296,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85681] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1845), 26, + ACTIONS(1556), 25, 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, @@ -91707,13 +96322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1843), 32, - anon_sym_import, + [87003] = 5, + ACTIONS(1930), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1409), 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, @@ -91721,12 +96342,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91740,21 +96355,15 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85748] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1819), 26, - sym__dedent, + ACTIONS(1411), 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_AT, anon_sym_QMARK_DOT, - anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, @@ -91771,13 +96380,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1821), 32, - anon_sym_import, + [87066] = 21, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_LBRACK, + ACTIONS(1895), 1, + anon_sym_STAR_STAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOT, + ACTIONS(1903), 1, + anon_sym_PIPE, + ACTIONS(1905), 1, + anon_sym_AMP, + ACTIONS(1907), 1, + anon_sym_CARET, + ACTIONS(1911), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(1917), 1, + anon_sym_not, + ACTIONS(1921), 1, + anon_sym_is, + STATE(1078), 1, + aux_sym_comparison_operator_repeat1, + STATE(1095), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1899), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1901), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1909), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1915), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1919), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1321), 7, + sym_string_start, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + anon_sym_TILDE, + sym_float, + ACTIONS(1319), 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, + [87161] = 4, + STATE(1037), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 24, 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, @@ -91785,12 +96472,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91804,19 +96485,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85815] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1841), 26, + ACTIONS(1544), 25, 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, @@ -91835,13 +96511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1839), 32, - anon_sym_import, + [87222] = 4, + STATE(1037), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1655), 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, @@ -91849,12 +96528,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91868,19 +96541,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85882] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1829), 26, + ACTIONS(1653), 25, 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, @@ -91899,13 +96567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1827), 32, - anon_sym_import, + [87282] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1665), 24, 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, @@ -91913,12 +96583,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91932,19 +96596,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [85949] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1815), 26, + ACTIONS(1667), 25, 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, @@ -91963,13 +96622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1813), 32, - anon_sym_import, + [87340] = 4, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 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, @@ -91977,12 +96639,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -91996,19 +96652,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86016] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1811), 26, + ACTIONS(1607), 25, 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, @@ -92027,13 +96678,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1809), 32, - anon_sym_import, + [87400] = 4, + STATE(1076), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 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, @@ -92041,12 +96695,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92060,19 +96708,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86083] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1807), 26, + ACTIONS(1607), 25, 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, @@ -92091,13 +96734,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1805), 32, - anon_sym_import, + [87460] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1475), 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(1473), 34, anon_sym_DOT, anon_sym_as, - anon_sym_assert, 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, + [87518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1613), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -92105,12 +96805,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92124,19 +96818,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86150] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1797), 26, - sym__dedent, + ACTIONS(1615), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -92155,13 +96844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1799), 32, - anon_sym_import, + [87576] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1621), 24, 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, @@ -92169,12 +96860,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92188,19 +96873,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86217] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1807), 26, + ACTIONS(1623), 25, 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, @@ -92219,13 +96899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1805), 32, - anon_sym_import, + [87634] = 4, + STATE(1221), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 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, @@ -92233,12 +96916,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92252,19 +96929,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86284] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1803), 26, + ACTIONS(1607), 25, 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, @@ -92283,13 +96955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1801), 32, - anon_sym_import, + [87694] = 4, + STATE(1096), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 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, @@ -92297,12 +96972,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92316,19 +96985,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86351] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1791), 26, + ACTIONS(1607), 25, 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, @@ -92347,13 +97011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1789), 32, - anon_sym_import, + [87754] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 24, 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, @@ -92361,12 +97027,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92380,19 +97040,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86418] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1793), 26, - sym__dedent, + ACTIONS(1609), 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_AT, anon_sym_QMARK_DOT, anon_sym_PLUS, anon_sym_DQUOTE, @@ -92411,13 +97066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1795), 32, - anon_sym_import, + [87812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1603), 24, 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, @@ -92425,12 +97082,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92444,19 +97095,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86485] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1787), 26, + ACTIONS(1601), 25, 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, @@ -92475,13 +97121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1785), 32, - anon_sym_import, + [87870] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1669), 24, 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, @@ -92489,12 +97137,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92508,19 +97150,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86552] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1787), 26, + ACTIONS(1671), 25, 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, @@ -92539,13 +97176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1785), 32, - anon_sym_import, + [87928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1675), 24, 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, @@ -92553,12 +97192,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92572,19 +97205,14 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86619] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1783), 26, + ACTIONS(1673), 25, 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, @@ -92603,13 +97231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1781), 32, - anon_sym_import, + [87986] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1663), 24, 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, @@ -92617,12 +97247,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92636,44 +97260,18 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [86686] = 11, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(1873), 1, + ACTIONS(1661), 25, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(1875), 1, - sym_isMutableFlag, - ACTIONS(1877), 1, - anon_sym_QMARK_COLON, - STATE(1833), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2196), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1459), 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(696), 14, - anon_sym_STAR, + 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, @@ -92681,43 +97279,20 @@ 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(694), 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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, anon_sym_QMARK_LBRACK, - [86764] = 8, - ACTIONS(1879), 1, - sym_isMutableFlag, - ACTIONS(1881), 1, - anon_sym_QMARK_COLON, - STATE(1054), 1, - aux_sym_comparison_operator_repeat1, - STATE(1115), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, + sym_float, + [88044] = 4, + ACTIONS(1939), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 23, + ACTIONS(1465), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -92741,7 +97316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(694), 25, + ACTIONS(1463), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -92767,21 +97342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [86836] = 8, - ACTIONS(1879), 1, - sym_isMutableFlag, - ACTIONS(1881), 1, - anon_sym_QMARK_COLON, - STATE(1115), 1, - sym_dict_expr, - STATE(1171), 1, + [88104] = 4, + STATE(1075), 1, aux_sym_comparison_operator_repeat1, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 23, + ACTIONS(1619), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -92805,7 +97372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(694), 25, + ACTIONS(1617), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -92831,21 +97398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [86908] = 8, - ACTIONS(1879), 1, - sym_isMutableFlag, - ACTIONS(1881), 1, - anon_sym_QMARK_COLON, - STATE(1115), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, + [88164] = 4, + STATE(1075), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 23, + ACTIONS(1619), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -92869,7 +97428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(694), 25, + ACTIONS(1617), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -92895,13 +97454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [86980] = 4, - STATE(1022), 1, - aux_sym_union_type_repeat1, + [88224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 24, + ACTIONS(1597), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -92926,7 +97483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1273), 25, + ACTIONS(1599), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -92952,38 +97509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87041] = 4, - ACTIONS(1883), 1, - anon_sym_DASH_GT, + [88282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 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(1261), 25, + ACTIONS(1475), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -92998,7 +97528,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, @@ -93009,64 +97538,52 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [87102] = 21, - ACTIONS(1885), 1, + ACTIONS(1473), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1887), 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(1897), 1, - anon_sym_not, - ACTIONS(1903), 1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(1905), 1, anon_sym_AMP, - ACTIONS(1907), 1, anon_sym_CARET, - ACTIONS(1913), 1, - anon_sym_is, - ACTIONS(1915), 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, - STATE(1117), 1, - sym_argument_list, - STATE(1187), 1, + sym_float, + [88340] = 8, + ACTIONS(1958), 1, + anon_sym_not, + ACTIONS(1964), 1, + anon_sym_is, + STATE(1075), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1901), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1909), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1889), 3, + ACTIONS(1955), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1911), 4, + ACTIONS(1961), 4, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1284), 16, + ACTIONS(1625), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93075,22 +97592,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_any, anon_sym_filter, anon_sym_map, + anon_sym_STAR, anon_sym_and, anon_sym_or, + anon_sym_SLASH, sym_integer, sym_identifier, sym_true, sym_false, sym_none, sym_undefined, - [87197] = 4, + ACTIONS(1627), 21, + 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_QMARK_LBRACK, + sym_float, + [88408] = 4, + STATE(1075), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 23, + ACTIONS(1619), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93114,7 +97654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1225), 25, + ACTIONS(1617), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -93140,29 +97680,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87258] = 10, - ACTIONS(1885), 1, - anon_sym_LPAREN, - ACTIONS(1887), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [88468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1322), 20, + ACTIONS(1659), 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(1657), 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, @@ -93178,8 +97733,15 @@ 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(1324), 23, + [88526] = 4, + STATE(1075), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1619), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93203,17 +97765,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [87331] = 6, - ACTIONS(1917), 1, - anon_sym_DOT, - ACTIONS(1920), 1, + 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, - STATE(1009), 1, - aux_sym_dotted_name_repeat1, + 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, + [88586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1382), 23, + ACTIONS(1679), 24, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_EQ, @@ -93237,7 +97820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1380), 24, + ACTIONS(1677), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -93245,6 +97828,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, @@ -93262,38 +97846,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87396] = 12, - ACTIONS(1885), 1, - anon_sym_LPAREN, - ACTIONS(1887), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [88644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(1843), 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, - ACTIONS(1901), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1841), 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, @@ -93304,8 +97898,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(1324), 21, + [88701] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1849), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93315,9 +97914,11 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93327,54 +97928,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [87473] = 16, - ACTIONS(1885), 1, + ACTIONS(1851), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1887), 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(1905), 1, - anon_sym_AMP, - ACTIONS(1907), 1, - anon_sym_CARET, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1909), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1322), 12, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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(1324), 21, + [88758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1719), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93384,9 +97968,11 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93396,53 +97982,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [87558] = 15, - ACTIONS(1885), 1, + ACTIONS(1717), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1887), 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(1907), 1, - anon_sym_CARET, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1909), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 13, - 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, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1324), 21, + [88815] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1723), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93452,9 +98022,11 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93464,17 +98036,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [87641] = 4, - STATE(1022), 1, - aux_sym_union_type_repeat1, + ACTIONS(1721), 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, + [88872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 24, + ACTIONS(1857), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -93495,7 +98090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1259), 25, + ACTIONS(1859), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -93521,100 +98116,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [87702] = 22, - ACTIONS(1298), 1, - anon_sym_not, - ACTIONS(1314), 1, - anon_sym_is, - ACTIONS(1885), 1, - anon_sym_LPAREN, - ACTIONS(1887), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1903), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, - anon_sym_AMP, - ACTIONS(1907), 1, - anon_sym_CARET, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [88929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1901), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1909), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1290), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1312), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1284), 5, + ACTIONS(1869), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1402), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1404), 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, - [87799] = 8, - ACTIONS(1923), 1, - anon_sym_and, - ACTIONS(1925), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 6, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - ACTIONS(1440), 12, + ACTIONS(1871), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -93623,11 +98153,9 @@ 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_TILDE, - sym_float, - ACTIONS(1465), 12, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -93635,74 +98163,72 @@ 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(1442), 16, + sym_float, + [88986] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1873), 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, - [87868] = 14, - ACTIONS(1885), 1, + ACTIONS(1875), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1887), 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(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1909), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 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_LT_LT, + anon_sym_GT_GT, anon_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(1324), 21, + [89043] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1727), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93712,9 +98238,11 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93724,15 +98252,37 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [87949] = 5, - ACTIONS(1927), 1, - anon_sym_EQ, - STATE(1022), 1, - aux_sym_union_type_repeat1, + ACTIONS(1725), 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, + [89100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 23, + ACTIONS(1697), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93756,7 +98306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1394), 25, + ACTIONS(1699), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -93782,39 +98332,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88012] = 13, - ACTIONS(1885), 1, - anon_sym_LPAREN, - ACTIONS(1887), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [89157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(1701), 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, - ACTIONS(1899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1901), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 16, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + ACTIONS(1703), 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, @@ -93825,8 +98384,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(1324), 21, + [89214] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1853), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -93836,9 +98400,11 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93848,25 +98414,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [88091] = 8, - ACTIONS(1440), 1, + ACTIONS(1855), 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(1923), 1, - anon_sym_and, - ACTIONS(1925), 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, + [89271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, + ACTIONS(1705), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_or, - ACTIONS(1463), 18, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -93875,6 +98456,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, @@ -93885,7 +98468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1465), 23, + ACTIONS(1707), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -93893,6 +98476,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, @@ -93909,13 +98494,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88160] = 4, - ACTIONS(1929), 1, - anon_sym_DASH_GT, + [89328] = 5, + ACTIONS(1967), 1, + anon_sym_in, + ACTIONS(1969), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 24, + ACTIONS(1605), 21, + 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_STAR, + anon_sym_and, + anon_sym_or, + 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, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -93926,6 +98535,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, @@ -93940,11 +98550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1265), 25, + [89389] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1739), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -93955,7 +98568,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, @@ -93966,91 +98578,40 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [88221] = 21, - ACTIONS(1885), 1, + ACTIONS(1741), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1887), 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(1897), 1, - anon_sym_not, - ACTIONS(1903), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, - anon_sym_AMP, - ACTIONS(1907), 1, - anon_sym_CARET, - ACTIONS(1913), 1, - anon_sym_is, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1048), 1, - aux_sym_comparison_operator_repeat1, - STATE(1117), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1909), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1889), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1911), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1284), 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, - [88316] = 4, - STATE(1025), 1, - aux_sym_union_type_repeat1, + [89446] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 24, + ACTIONS(1713), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -94071,7 +98632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1392), 25, + ACTIONS(1715), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94097,18 +98658,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88377] = 6, - ACTIONS(1923), 1, - anon_sym_and, - ACTIONS(1925), 1, - anon_sym_PLUS, + [89503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 22, + ACTIONS(1743), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94120,6 +98674,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, @@ -94131,7 +98686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1440), 24, + ACTIONS(1745), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94140,6 +98695,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, @@ -94156,16 +98712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88442] = 5, - ACTIONS(1925), 1, - anon_sym_PLUS, + [89560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 23, + ACTIONS(1747), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94189,7 +98740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1444), 24, + ACTIONS(1749), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94198,6 +98749,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, @@ -94214,15 +98766,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88505] = 5, - ACTIONS(1931), 1, - anon_sym_PIPE, - STATE(1025), 1, - aux_sym_union_type_repeat1, + [89617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 24, + ACTIONS(1755), 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(1757), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94236,6 +98808,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, @@ -94247,11 +98820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1275), 24, + [89674] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1767), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -94272,166 +98848,91 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [88568] = 22, - ACTIONS(1298), 1, - anon_sym_not, - ACTIONS(1314), 1, - anon_sym_is, - ACTIONS(1885), 1, + ACTIONS(1769), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1887), 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(1903), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, - anon_sym_AMP, - ACTIONS(1907), 1, - anon_sym_CARET, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1909), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1290), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1312), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, + anon_sym_QMARK_LBRACK, + sym_float, + [89731] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1771), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1318), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, - sym_float, - ACTIONS(1320), 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, - [88665] = 22, - ACTIONS(1298), 1, - anon_sym_not, - ACTIONS(1314), 1, - anon_sym_is, - ACTIONS(1885), 1, + ACTIONS(1773), 25, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1887), 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(1903), 1, - anon_sym_PIPE, - ACTIONS(1905), 1, - anon_sym_AMP, - ACTIONS(1907), 1, - anon_sym_CARET, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1891), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1899), 2, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(1901), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1909), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1290), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1312), 4, + anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1284), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1280), 7, - sym_string_start, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - anon_sym_TILDE, + anon_sym_QMARK_LBRACK, sym_float, - ACTIONS(1282), 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, - [88762] = 5, - ACTIONS(1925), 1, - anon_sym_PLUS, + [89788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 23, + ACTIONS(1775), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94455,7 +98956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1440), 24, + ACTIONS(1777), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94464,6 +98965,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, @@ -94480,24 +98982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88825] = 9, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_QMARK_DOT, - ACTIONS(1923), 1, - anon_sym_and, - ACTIONS(1925), 1, - anon_sym_PLUS, - ACTIONS(1934), 1, - anon_sym_or, + [89845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 20, + ACTIONS(1779), 23, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, @@ -94508,6 +98998,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, @@ -94518,7 +99010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1485), 23, + ACTIONS(1781), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94526,6 +99018,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, @@ -94542,14 +99036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88896] = 4, + [89902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1038), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1376), 23, + ACTIONS(1791), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94573,7 +99064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1378), 25, + ACTIONS(1793), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94599,16 +99090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [88957] = 5, - ACTIONS(1925), 1, - anon_sym_PLUS, + [89959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1426), 23, + ACTIONS(1795), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94632,7 +99118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1424), 24, + ACTIONS(1797), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94641,6 +99127,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, @@ -94657,17 +99144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89020] = 4, - STATE(1022), 1, - aux_sym_union_type_repeat1, + [90016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 24, + ACTIONS(1861), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -94688,7 +99172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1414), 25, + ACTIONS(1863), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94714,71 +99198,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89081] = 4, - ACTIONS(1936), 1, - anon_sym_DASH_GT, + [90073] = 7, + ACTIONS(1399), 1, + anon_sym_is, + STATE(873), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1245), 24, + ACTIONS(1375), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1397), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_DASH, anon_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(1247), 25, + ACTIONS(1619), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_EQ, + 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_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, - [89142] = 4, + [90138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 23, + ACTIONS(1817), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -94802,7 +99284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1225), 25, + ACTIONS(1819), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -94828,201 +99310,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89203] = 10, - ACTIONS(1885), 1, - anon_sym_LPAREN, - ACTIONS(1887), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, + [90195] = 7, + ACTIONS(1351), 1, + anon_sym_is, + STATE(872), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 20, + ACTIONS(1327), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1349), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 13, + sym__dedent, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + 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, sym_float, - ACTIONS(1372), 23, + ACTIONS(1619), 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, - [89276] = 10, - ACTIONS(1885), 1, - anon_sym_LPAREN, - ACTIONS(1887), 1, - anon_sym_LBRACK, - ACTIONS(1893), 1, - anon_sym_STAR_STAR, - ACTIONS(1895), 1, - anon_sym_QMARK_DOT, - ACTIONS(1915), 1, - anon_sym_QMARK_LBRACK, - STATE(1117), 1, - sym_argument_list, - STATE(2215), 1, + [90260] = 7, + ACTIONS(1351), 1, + anon_sym_is, + STATE(872), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1322), 20, + ACTIONS(1327), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1349), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 13, + sym__dedent, sym_string_start, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + 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, sym_float, - ACTIONS(1324), 23, + ACTIONS(1619), 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, - [89349] = 4, - STATE(1045), 1, - aux_sym_dotted_name_repeat1, + [90325] = 7, + ACTIONS(1351), 1, + anon_sym_is, + STATE(872), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1461), 24, + ACTIONS(1327), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1349), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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(1619), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_EQ, + 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(1459), 25, + [90390] = 7, + ACTIONS(1351), 1, + anon_sym_is, + STATE(872), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1327), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1349), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 13, + sym__dedent, sym_string_start, 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, - [89410] = 6, - ACTIONS(1938), 1, + ACTIONS(1619), 26, + anon_sym_import, anon_sym_DOT, - ACTIONS(1941), 1, - anon_sym_QMARK_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, + [90455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1038), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1364), 22, + ACTIONS(1829), 23, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_lambda, @@ -95045,7 +99570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1362), 24, + ACTIONS(1831), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95053,6 +99578,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, @@ -95070,18 +99596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89475] = 6, - ACTIONS(1923), 1, - anon_sym_and, - ACTIONS(1925), 1, - anon_sym_PLUS, + [90512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1253), 22, + ACTIONS(1727), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95093,6 +99612,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, @@ -95104,7 +99624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1251), 24, + ACTIONS(1725), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95113,6 +99633,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, @@ -95129,28 +99650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89540] = 11, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_QMARK_DOT, - ACTIONS(1923), 1, - anon_sym_and, - ACTIONS(1925), 1, - anon_sym_PLUS, - ACTIONS(1934), 1, - anon_sym_or, - ACTIONS(1944), 1, - anon_sym_as, - ACTIONS(1946), 1, - anon_sym_if, + [90569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1493), 18, + ACTIONS(1605), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95159,6 +99666,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, @@ -95169,7 +99678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1491), 23, + ACTIONS(1607), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95177,6 +99686,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, @@ -95193,72 +99704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89615] = 5, - STATE(1041), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1948), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1382), 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(1380), 32, - 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_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, - [89678] = 4, + [90626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1271), 23, + ACTIONS(1847), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95282,7 +99732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1269), 25, + ACTIONS(1845), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95308,14 +99758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89739] = 4, + [90683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 23, + ACTIONS(1695), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95339,7 +99786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1428), 25, + ACTIONS(1693), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95365,17 +99812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89800] = 4, - STATE(1022), 1, - aux_sym_union_type_repeat1, + [90740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1243), 24, + ACTIONS(1839), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95396,7 +99840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1241), 25, + ACTIONS(1837), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95422,17 +99866,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89861] = 4, - STATE(1009), 1, - aux_sym_dotted_name_repeat1, + [90797] = 7, + ACTIONS(1399), 1, + anon_sym_is, + STATE(873), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 24, + ACTIONS(1375), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1397), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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(1619), 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, + [90862] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1319), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95453,7 +99952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1467), 25, + ACTIONS(1321), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95479,13 +99978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89922] = 4, - STATE(1066), 1, - aux_sym_comparison_operator_repeat1, + [90919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 23, + ACTIONS(1815), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95509,7 +100006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1665), 25, + ACTIONS(1813), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95535,15 +100032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [89982] = 3, + [90976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1535), 24, + ACTIONS(1759), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95564,7 +100060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1533), 25, + ACTIONS(1761), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95590,13 +100086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90040] = 4, - STATE(1066), 1, - aux_sym_comparison_operator_repeat1, + [91033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 23, + ACTIONS(1763), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95620,7 +100114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1665), 25, + ACTIONS(1765), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95646,70 +100140,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90100] = 3, + [91090] = 7, + ACTIONS(1399), 1, + anon_sym_is, + STATE(873), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1525), 24, + ACTIONS(1375), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1397), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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(1619), 26, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_EQ, + 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(1523), 25, + [91155] = 7, + ACTIONS(1399), 1, + anon_sym_is, + STATE(873), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1375), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1397), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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, - [90158] = 3, + ACTIONS(1619), 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, + [91220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 24, + ACTIONS(1729), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95730,7 +100284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1587), 25, + ACTIONS(1731), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95756,24 +100310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90216] = 4, - STATE(1046), 1, - aux_sym_comparison_operator_repeat1, + [91277] = 5, + ACTIONS(1689), 1, + anon_sym_in, + ACTIONS(1691), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 23, + ACTIONS(1605), 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, @@ -95786,7 +100340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1607), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95812,15 +100366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90276] = 3, + [91338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1585), 24, + ACTIONS(1729), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -95841,7 +100394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1583), 25, + ACTIONS(1731), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95867,24 +100420,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90334] = 4, - STATE(1066), 1, - aux_sym_comparison_operator_repeat1, + [91395] = 5, + ACTIONS(1967), 1, + anon_sym_in, + ACTIONS(1971), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 23, + ACTIONS(1605), 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, @@ -95897,7 +100450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1665), 25, + ACTIONS(1607), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95923,13 +100476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90394] = 4, - STATE(1066), 1, - aux_sym_comparison_operator_repeat1, + [91456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 23, + ACTIONS(1735), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -95953,7 +100504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1665), 25, + ACTIONS(1737), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -95979,15 +100530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90454] = 3, + [91513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 24, + ACTIONS(1753), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96008,7 +100558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1591), 25, + ACTIONS(1751), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96034,70 +100584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90512] = 3, + [91570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1382), 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(1380), 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, - [90570] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1541), 24, + ACTIONS(1785), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96118,7 +100612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1539), 25, + ACTIONS(1783), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96144,15 +100638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90628] = 3, + [91627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 24, + ACTIONS(1865), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96173,7 +100666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1579), 25, + ACTIONS(1867), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96199,15 +100692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90686] = 3, + [91684] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 24, + ACTIONS(1823), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96228,7 +100720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1565), 25, + ACTIONS(1821), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96254,15 +100746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90744] = 3, + [91741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 24, + ACTIONS(1827), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96283,7 +100774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1595), 25, + ACTIONS(1825), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96309,15 +100800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90802] = 3, + [91798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 24, + ACTIONS(1835), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96338,7 +100828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1569), 25, + ACTIONS(1833), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96364,13 +100854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90860] = 4, - STATE(2212), 1, - aux_sym_comparison_operator_repeat1, + [91855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 23, + ACTIONS(1809), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96394,7 +100882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1811), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96420,15 +100908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90920] = 3, + [91912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1382), 24, + ACTIONS(1805), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96449,7 +100936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1380), 25, + ACTIONS(1807), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96475,13 +100962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [90978] = 4, - ACTIONS(1927), 1, - anon_sym_EQ, + [91969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 23, + ACTIONS(1605), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96505,7 +100990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1394), 25, + ACTIONS(1607), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96531,13 +101016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91038] = 4, - STATE(1022), 1, - aux_sym_union_type_repeat1, + [92026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1561), 23, + ACTIONS(1799), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96561,7 +101044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1559), 25, + ACTIONS(1801), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96587,75 +101070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91098] = 8, - ACTIONS(1954), 1, - anon_sym_not, - ACTIONS(1960), 1, - anon_sym_is, - STATE(1066), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1951), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1957), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1545), 18, - 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_STAR, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1543), 21, - 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_QMARK_LBRACK, - sym_float, - [91166] = 3, + [92083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1531), 24, + ACTIONS(1687), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_EQ, anon_sym_lambda, anon_sym_in, anon_sym_all, @@ -96676,7 +101098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1529), 25, + ACTIONS(1685), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96702,13 +101124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91224] = 4, - STATE(1197), 1, - aux_sym_comparison_operator_repeat1, + [92140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 23, + ACTIONS(1787), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96732,7 +101152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1599), 25, + ACTIONS(1789), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96758,11 +101178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91284] = 3, + [92197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 23, + ACTIONS(1763), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -96786,7 +101206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - ACTIONS(1707), 25, + ACTIONS(1765), 25, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -96812,99 +101232,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_LBRACK, sym_float, - [91341] = 3, + [92254] = 9, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(1975), 1, + sym_isMutableFlag, + ACTIONS(1977), 1, + anon_sym_QMARK_COLON, + STATE(1394), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2137), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 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, + ACTIONS(746), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1857), 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, - [91398] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 23, + ACTIONS(744), 31, 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(1599), 25, - 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -96913,52 +101281,53 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [91455] = 3, + [92318] = 9, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(1975), 1, + sym_isMutableFlag, + ACTIONS(1977), 1, + anon_sym_QMARK_COLON, + STATE(1233), 1, + aux_sym_comparison_operator_repeat1, + STATE(1394), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 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, + ACTIONS(746), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, 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(1815), 25, - sym_string_start, + ACTIONS(744), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -96967,52 +101336,53 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [91512] = 3, + [92382] = 9, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(1975), 1, + sym_isMutableFlag, + ACTIONS(1977), 1, + anon_sym_QMARK_COLON, + STATE(1394), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 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, + ACTIONS(746), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1811), 25, - sym_string_start, + ACTIONS(744), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -97021,160 +101391,198 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [91569] = 3, + [92446] = 5, + ACTIONS(1979), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 23, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1419), 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(1417), 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(1807), 25, + [92500] = 5, + ACTIONS(1979), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1411), 12, 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, - [91626] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1805), 23, + ACTIONS(1409), 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(1807), 25, + [92554] = 5, + ACTIONS(1981), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1419), 12, + sym__dedent, sym_string_start, 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, - [91683] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1801), 23, + ACTIONS(1417), 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(1803), 25, - sym_string_start, - anon_sym_COMMA, + [92608] = 9, + ACTIONS(1983), 1, + anon_sym_LBRACE, + ACTIONS(1985), 1, + sym_isMutableFlag, + ACTIONS(1987), 1, + anon_sym_QMARK_COLON, + STATE(1313), 1, + sym_dict_expr, + STATE(1444), 1, + aux_sym_comparison_operator_repeat1, + STATE(2053), 1, + aux_sym_dotted_name_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(744), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + 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, @@ -97183,85 +101591,130 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [91740] = 3, + [92670] = 9, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1981), 1, + anon_sym_PLUS, + ACTIONS(1989), 1, + anon_sym_and, + ACTIONS(1991), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 23, - anon_sym_DOT, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1301), 11, + sym__dedent, + sym_string_start, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1299), 23, + 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, - ACTIONS(1753), 25, + [92732] = 11, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1981), 1, + anon_sym_PLUS, + ACTIONS(1989), 1, + anon_sym_and, + ACTIONS(1991), 1, + anon_sym_or, + ACTIONS(1993), 1, + anon_sym_as, + ACTIONS(1995), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 11, + sym__dedent, 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_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, - [91797] = 7, - ACTIONS(1422), 1, - anon_sym_is, - STATE(521), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1285), 21, + 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, + anon_sym_not, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [92798] = 5, + ACTIONS(1979), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1420), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 13, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 12, sym_string_start, ts_builtin_sym_end, anon_sym_COMMA, @@ -97270,12 +101723,11 @@ static const uint16_t ts_small_parse_table[] = { 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(1663), 26, + ACTIONS(1413), 26, anon_sym_import, anon_sym_DOT, anon_sym_as, @@ -97302,45 +101754,94 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [91862] = 3, + [92852] = 5, + ACTIONS(1981), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 23, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1411), 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, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1409), 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(1841), 25, - sym_string_start, - anon_sym_COMMA, + [92906] = 9, + ACTIONS(1983), 1, + anon_sym_LBRACE, + ACTIONS(1985), 1, + sym_isMutableFlag, + ACTIONS(1987), 1, + anon_sym_QMARK_COLON, + STATE(1313), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2215), 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(744), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + 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, @@ -97349,54 +101850,51 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [91919] = 5, - ACTIONS(1963), 1, - anon_sym_in, - ACTIONS(1965), 1, - anon_sym_not, + [92968] = 9, + ACTIONS(1983), 1, + anon_sym_LBRACE, + ACTIONS(1985), 1, + sym_isMutableFlag, + ACTIONS(1987), 1, + anon_sym_QMARK_COLON, + STATE(1313), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + ACTIONS(746), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1599), 25, - sym_string_start, - anon_sym_COMMA, + ACTIONS(744), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + 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, @@ -97405,216 +101903,262 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [91980] = 3, + [93030] = 9, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1229), 1, + anon_sym_QMARK_DOT, + ACTIONS(1979), 1, + anon_sym_PLUS, + ACTIONS(1997), 1, + anon_sym_and, + ACTIONS(1999), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 23, - anon_sym_DOT, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1301), 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_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1299), 23, + 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, - ACTIONS(1691), 25, + [93092] = 11, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1229), 1, + anon_sym_QMARK_DOT, + ACTIONS(1979), 1, + anon_sym_PLUS, + ACTIONS(1997), 1, + anon_sym_and, + ACTIONS(1999), 1, + anon_sym_or, + ACTIONS(2001), 1, + anon_sym_as, + ACTIONS(2003), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 11, 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_QMARK_DOT, - anon_sym_PLUS, + 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, - [92037] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1843), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1285), 21, + 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, - ACTIONS(1845), 25, + [93158] = 5, + ACTIONS(1981), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 12, + sym__dedent, sym_string_start, 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, - [92094] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1735), 23, + ACTIONS(1413), 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(1733), 25, + [93212] = 11, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1229), 1, + anon_sym_QMARK_DOT, + ACTIONS(1979), 1, + anon_sym_PLUS, + ACTIONS(1997), 1, + anon_sym_and, + ACTIONS(1999), 1, + anon_sym_or, + ACTIONS(2001), 1, + anon_sym_as, + ACTIONS(2009), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2005), 10, sym_string_start, - anon_sym_COMMA, + ts_builtin_sym_end, 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_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, - [92151] = 5, - ACTIONS(1713), 1, - anon_sym_in, - ACTIONS(1715), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 21, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2007), 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_STAR, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, + 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, - ACTIONS(1599), 25, - sym_string_start, + [93277] = 10, + ACTIONS(2011), 1, + anon_sym_COLON, + ACTIONS(2013), 1, + anon_sym_LBRACE, + ACTIONS(2015), 1, + sym_isMutableFlag, + ACTIONS(2017), 1, + anon_sym_QMARK_COLON, + STATE(1778), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2218), 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(744), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -97623,51 +102167,48 @@ 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, - sym_float, - [92212] = 7, - ACTIONS(1422), 1, anon_sym_is, - STATE(521), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [93340] = 11, + ACTIONS(1018), 1, + anon_sym_DOT, + ACTIONS(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1981), 1, + anon_sym_PLUS, + ACTIONS(1989), 1, + anon_sym_and, + ACTIONS(1991), 1, + anon_sym_or, + ACTIONS(1993), 1, + anon_sym_as, + ACTIONS(2021), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1420), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 13, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2023), 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1663), 26, + ACTIONS(2019), 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, @@ -97680,107 +102221,104 @@ 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, - [92277] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1697), 23, + [93405] = 11, + ACTIONS(1018), 1, 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(1243), 1, + anon_sym_QMARK_DOT, + ACTIONS(1981), 1, + anon_sym_PLUS, + ACTIONS(1989), 1, anon_sym_and, + ACTIONS(1991), 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, - ACTIONS(1699), 25, + ACTIONS(1993), 1, + anon_sym_as, + ACTIONS(2009), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(819), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2005), 10, + sym__dedent, 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_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, - [92334] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1705), 23, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2007), 21, + anon_sym_import, + anon_sym_assert, 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_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(1707), 25, - sym_string_start, + [93470] = 9, + ACTIONS(2013), 1, + anon_sym_LBRACE, + ACTIONS(2015), 1, + sym_isMutableFlag, + ACTIONS(2017), 1, + anon_sym_QMARK_COLON, + STATE(1537), 1, + aux_sym_comparison_operator_repeat1, + STATE(1778), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_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(744), 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_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, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -97789,53 +102327,47 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [92391] = 3, + [93531] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 23, + ACTIONS(2025), 2, 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_QMARK_DOT, + STATE(1163), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1489), 7, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + 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, - ACTIONS(1853), 25, - sym_string_start, + ACTIONS(1487), 29, + 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, + 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, @@ -97843,51 +102375,48 @@ 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, - sym_float, - [92448] = 7, - ACTIONS(1422), 1, anon_sym_is, - STATE(521), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [93584] = 11, + ACTIONS(1141), 1, + anon_sym_DOT, + ACTIONS(1229), 1, + anon_sym_QMARK_DOT, + ACTIONS(1979), 1, + anon_sym_PLUS, + ACTIONS(1997), 1, + anon_sym_and, + ACTIONS(1999), 1, + anon_sym_or, + ACTIONS(2001), 1, + anon_sym_as, + ACTIONS(2028), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1420), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 13, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2023), 10, 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(1663), 26, + ACTIONS(2019), 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, @@ -97900,112 +102429,145 @@ 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, - [92513] = 7, - ACTIONS(1422), 1, - anon_sym_is, - STATE(521), 1, + [93649] = 9, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(1975), 1, + sym_isMutableFlag, + ACTIONS(1977), 1, + anon_sym_QMARK_COLON, + STATE(1394), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2137), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 3, - anon_sym_in, + ACTIONS(746), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1420), 4, + ACTIONS(744), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + 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_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, - ACTIONS(1665), 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_is, + anon_sym_QMARK_LBRACK, + [93710] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1163), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1439), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1663), 26, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1437), 31, anon_sym_DOT, anon_sym_as, - anon_sym_assert, 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, anon_sym_and, anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [92578] = 3, + 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, + [93761] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 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, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1546), 7, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + 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, - ACTIONS(1729), 25, - sym_string_start, + ACTIONS(1548), 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, + 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, @@ -98013,53 +102575,46 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [92635] = 3, + [93812] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 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, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 7, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + 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, - ACTIONS(1791), 25, - sym_string_start, + ACTIONS(1556), 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, + 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, @@ -98067,52 +102622,50 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [92692] = 3, + [93863] = 9, + ACTIONS(2013), 1, + anon_sym_LBRACE, + ACTIONS(2015), 1, + sym_isMutableFlag, + ACTIONS(2017), 1, + anon_sym_QMARK_COLON, + STATE(1778), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 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, + ACTIONS(746), 4, 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(1703), 25, - sym_string_start, + ACTIONS(744), 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_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, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -98121,52 +102674,51 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [92749] = 3, + [93924] = 10, + ACTIONS(2013), 1, + anon_sym_LBRACE, + ACTIONS(2015), 1, + sym_isMutableFlag, + ACTIONS(2017), 1, + anon_sym_QMARK_COLON, + ACTIONS(2030), 1, + anon_sym_COLON, + STATE(1778), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2218), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 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, + ACTIONS(746), 4, 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(1787), 25, - sym_string_start, + ACTIONS(744), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - 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, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -98175,53 +102727,46 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [92806] = 3, + [93987] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 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, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1562), 7, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + 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, - ACTIONS(1787), 25, - sym_string_start, + ACTIONS(1560), 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, + 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, @@ -98229,52 +102774,50 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [92863] = 3, + [94038] = 9, + ACTIONS(2013), 1, + anon_sym_LBRACE, + ACTIONS(2015), 1, + sym_isMutableFlag, + ACTIONS(2017), 1, + anon_sym_QMARK_COLON, + STATE(1778), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2218), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 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, + ACTIONS(746), 4, 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(1783), 25, - sym_string_start, + ACTIONS(744), 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_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, - anon_sym_DQUOTE, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -98283,111 +102826,95 @@ 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, - sym_float, - [92920] = 7, - ACTIONS(1358), 1, anon_sym_is, - STATE(891), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [94099] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1334), 3, - anon_sym_in, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1356), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 13, - sym__dedent, - sym_string_start, + ACTIONS(1556), 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_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1663), 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, - [92985] = 3, - ACTIONS(3), 2, + 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, + [94150] = 9, + ACTIONS(744), 1, + anon_sym_LF, + ACTIONS(2032), 1, + anon_sym_LBRACE, + ACTIONS(2034), 1, + sym_isMutableFlag, + ACTIONS(2036), 1, + anon_sym_QMARK_COLON, + STATE(1926), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 23, + ACTIONS(746), 32, 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(1328), 25, - sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - 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_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -98395,52 +102922,49 @@ 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, 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, - sym_float, - [93042] = 3, + [94210] = 7, + ACTIONS(2038), 1, + anon_sym_and, + ACTIONS(2040), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 23, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 5, 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_QMARK_DOT, anon_sym_or, + ACTIONS(1433), 5, + anon_sym_EQ, + anon_sym_STAR, 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(1779), 25, - sym_string_start, + ACTIONS(1435), 25, 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_for, + anon_sym_not, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -98449,52 +102973,97 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [93099] = 3, + [94266] = 4, + STATE(1187), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 23, + ACTIONS(1469), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_lambda, + 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_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1775), 25, - sym_string_start, - anon_sym_COMMA, + anon_sym_QMARK_LBRACK, + [94316] = 10, + ACTIONS(2042), 1, anon_sym_LPAREN, + ACTIONS(2044), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2046), 1, anon_sym_STAR_STAR, + ACTIONS(2048), 1, anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1530), 6, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1532), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_in, + 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, @@ -98503,52 +103072,50 @@ 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_is, + [94378] = 10, + ACTIONS(2042), 1, + anon_sym_LPAREN, + ACTIONS(2044), 1, + anon_sym_LBRACK, + ACTIONS(2046), 1, + anon_sym_STAR_STAR, + ACTIONS(2048), 1, + anon_sym_QMARK_DOT, + ACTIONS(2050), 1, anon_sym_QMARK_LBRACK, - sym_float, - [93156] = 3, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 23, + ACTIONS(1530), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1532), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_lambda, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + anon_sym_for, 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(1793), 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -98557,438 +103124,457 @@ 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, - sym_float, - [93213] = 7, - ACTIONS(1358), 1, anon_sym_is, - STATE(891), 1, + [94440] = 12, + ACTIONS(2042), 1, + anon_sym_LPAREN, + ACTIONS(2044), 1, + anon_sym_LBRACK, + ACTIONS(2046), 1, + anon_sym_STAR_STAR, + ACTIONS(2048), 1, + anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1334), 3, - anon_sym_in, + ACTIONS(2052), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2054), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1530), 4, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1356), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 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(1663), 26, - anon_sym_import, + ACTIONS(1532), 24, anon_sym_DOT, anon_sym_as, - anon_sym_assert, 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_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [93278] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1769), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, + anon_sym_RBRACE, anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + anon_sym_for, 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(1771), 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_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_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [93335] = 7, - ACTIONS(1358), 1, anon_sym_is, - STATE(891), 1, + [94506] = 17, + ACTIONS(2042), 1, + anon_sym_LPAREN, + ACTIONS(2044), 1, + anon_sym_LBRACK, + ACTIONS(2046), 1, + anon_sym_STAR_STAR, + ACTIONS(2048), 1, + anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2056), 1, + anon_sym_PLUS, + ACTIONS(2058), 1, + anon_sym_DASH, + ACTIONS(2060), 1, + anon_sym_AMP, + ACTIONS(2062), 1, + anon_sym_CARET, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1334), 3, - anon_sym_in, + ACTIONS(2052), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2054), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2064), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1530), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1356), 4, + ACTIONS(1532), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_for, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 13, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + anon_sym_is, + [94582] = 16, + ACTIONS(2042), 1, anon_sym_LPAREN, + ACTIONS(2044), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2046), 1, + anon_sym_STAR_STAR, + ACTIONS(2048), 1, anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2056), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2058), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1663), 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, - [93400] = 3, + ACTIONS(2062), 1, + anon_sym_CARET, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 23, + ACTIONS(2052), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2054), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2064), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1530), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1532), 20, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_lambda, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + anon_sym_for, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - ACTIONS(1765), 25, - sym_string_start, - anon_sym_COMMA, + [94656] = 15, + ACTIONS(2042), 1, anon_sym_LPAREN, + ACTIONS(2044), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2046), 1, anon_sym_STAR_STAR, + ACTIONS(2048), 1, anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2056), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2058), 1, anon_sym_DASH, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2052), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2054), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2064), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [93457] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1763), 23, + ACTIONS(1530), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1532), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_lambda, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + anon_sym_for, 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(1761), 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_PLUS_EQ, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_is, + [94728] = 14, + ACTIONS(2042), 1, + anon_sym_LPAREN, + ACTIONS(2044), 1, + anon_sym_LBRACK, + ACTIONS(2046), 1, + anon_sym_STAR_STAR, + ACTIONS(2048), 1, + anon_sym_QMARK_DOT, + ACTIONS(2050), 1, anon_sym_QMARK_LBRACK, - sym_float, - [93514] = 3, + ACTIONS(2056), 1, + anon_sym_PLUS, + ACTIONS(2058), 1, + anon_sym_DASH, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 23, + ACTIONS(2052), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2054), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1530), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1532), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_lambda, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + anon_sym_for, 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(1757), 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_PLUS_EQ, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_is, + [94798] = 23, + ACTIONS(1513), 1, + anon_sym_EQ, + ACTIONS(2042), 1, + anon_sym_LPAREN, + ACTIONS(2044), 1, + anon_sym_LBRACK, + ACTIONS(2046), 1, + anon_sym_STAR_STAR, + ACTIONS(2048), 1, + anon_sym_QMARK_DOT, + ACTIONS(2050), 1, anon_sym_QMARK_LBRACK, - sym_float, - [93571] = 3, + ACTIONS(2056), 1, + anon_sym_PLUS, + ACTIONS(2058), 1, + anon_sym_DASH, + ACTIONS(2060), 1, + anon_sym_AMP, + ACTIONS(2062), 1, + anon_sym_CARET, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2068), 1, + anon_sym_PIPE, + ACTIONS(2070), 1, + anon_sym_is, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 23, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2052), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2054), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2064), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1321), 5, 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(1797), 25, - sym_string_start, + ACTIONS(1455), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1515), 6, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_PLUS_EQ, + [94886] = 23, + ACTIONS(1509), 1, + anon_sym_EQ, + ACTIONS(2042), 1, anon_sym_LPAREN, + ACTIONS(2044), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2046), 1, anon_sym_STAR_STAR, + ACTIONS(2048), 1, anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2056), 1, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, + ACTIONS(2058), 1, + anon_sym_DASH, + ACTIONS(2060), 1, anon_sym_AMP, + ACTIONS(2062), 1, anon_sym_CARET, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2068), 1, + anon_sym_PIPE, + ACTIONS(2070), 1, + anon_sym_is, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2052), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2054), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2064), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [93628] = 3, + ACTIONS(1511), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_PLUS_EQ, + [94974] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 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, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1562), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1829), 25, - sym_string_start, + ACTIONS(1560), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -98997,53 +103583,45 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [93685] = 3, + [95024] = 4, + STATE(1036), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 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, + ACTIONS(1459), 7, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, + 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, - ACTIONS(1861), 25, - sym_string_start, + ACTIONS(1461), 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, + 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, @@ -99051,52 +103629,49 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [93742] = 3, + [95074] = 9, + ACTIONS(1983), 1, + anon_sym_LBRACE, + ACTIONS(1985), 1, + sym_isMutableFlag, + ACTIONS(1987), 1, + anon_sym_QMARK_COLON, + STATE(1313), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2215), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 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, + ACTIONS(746), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1869), 25, - sym_string_start, - anon_sym_COMMA, + ACTIONS(744), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99105,54 +103680,46 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [93799] = 5, - ACTIONS(1963), 1, - anon_sym_in, - ACTIONS(1967), 1, - anon_sym_not, + [95134] = 6, + ACTIONS(2038), 1, + anon_sym_and, + ACTIONS(2040), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1497), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_and, - anon_sym_or, 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(1599), 25, - sym_string_start, + ACTIONS(1499), 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_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_not, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99161,52 +103728,44 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [93860] = 3, + [95188] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 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, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1865), 25, - sym_string_start, + ACTIONS(1556), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99215,52 +103774,44 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [93917] = 3, + [95238] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 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, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1819), 25, - sym_string_start, + ACTIONS(1556), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99269,52 +103820,44 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [93974] = 3, + [95288] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 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, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1546), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1683), 25, - sym_string_start, + ACTIONS(1548), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99323,52 +103866,45 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [94031] = 3, + [95338] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 23, + ACTIONS(2072), 2, 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_QMARK_DOT, + STATE(1193), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1489), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1823), 25, - sym_string_start, + ACTIONS(1487), 29, + 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + 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, @@ -99377,52 +103913,48 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [94088] = 3, + [95390] = 8, + ACTIONS(1413), 1, + anon_sym_EQ, + ACTIONS(2038), 1, + anon_sym_and, + ACTIONS(2040), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 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, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 4, 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(1719), 25, - sym_string_start, + ACTIONS(1415), 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_QMARK_DOT, + anon_sym_or, + anon_sym_PLUS_EQ, + ACTIONS(1435), 19, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99431,164 +103963,177 @@ 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, - sym_float, - [94145] = 7, - ACTIONS(1358), 1, anon_sym_is, - STATE(891), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1334), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1356), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 13, - sym__dedent, - sym_string_start, - anon_sym_COMMA, + anon_sym_QMARK_LBRACK, + [95448] = 23, + ACTIONS(1449), 1, + anon_sym_EQ, + ACTIONS(2042), 1, anon_sym_LPAREN, + ACTIONS(2044), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2046), 1, + anon_sym_STAR_STAR, + ACTIONS(2048), 1, anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2056), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2058), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1663), 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, + ACTIONS(2060), 1, + anon_sym_AMP, + ACTIONS(2062), 1, + anon_sym_CARET, + ACTIONS(2066), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [94210] = 3, + ACTIONS(2068), 1, + anon_sym_PIPE, + ACTIONS(2070), 1, + anon_sym_is, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 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, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2052), 2, anon_sym_STAR, - anon_sym_not, + anon_sym_SLASH, + ACTIONS(2054), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2064), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_and, anon_sym_or, - 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(1721), 25, - sym_string_start, + ACTIONS(1455), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1447), 6, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, + anon_sym_PLUS_EQ, + [95536] = 22, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2042), 1, anon_sym_LPAREN, + ACTIONS(2044), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2046), 1, anon_sym_STAR_STAR, + ACTIONS(2048), 1, anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2056), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2058), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, + ACTIONS(2060), 1, anon_sym_AMP, + ACTIONS(2062), 1, anon_sym_CARET, + ACTIONS(2068), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(1230), 1, + aux_sym_comparison_operator_repeat1, + STATE(1294), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2052), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2054), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2064), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [94267] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1727), 23, + ACTIONS(1321), 11, 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_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, anon_sym_and, anon_sym_or, + anon_sym_PLUS_EQ, + [95622] = 8, + ACTIONS(2038), 1, + anon_sym_and, + ACTIONS(2040), 1, + anon_sym_PLUS, + ACTIONS(2083), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1299), 5, + anon_sym_EQ, + anon_sym_STAR, 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(1725), 25, - sym_string_start, + ACTIONS(1301), 27, + 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_for, + anon_sym_not, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99597,52 +104142,44 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [94324] = 3, + [95680] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 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, + STATE(1193), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1439), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1737), 25, - sym_string_start, + ACTIONS(1437), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99651,52 +104188,51 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [94381] = 3, + [95730] = 10, + ACTIONS(2042), 1, + anon_sym_LPAREN, + ACTIONS(2044), 1, + anon_sym_LBRACK, + ACTIONS(2046), 1, + anon_sym_STAR_STAR, + ACTIONS(2048), 1, + anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + STATE(1294), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 23, + ACTIONS(1427), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1425), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_lambda, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, anon_sym_in, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_STAR, + anon_sym_for, 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(1741), 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_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99705,52 +104241,44 @@ 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, - sym_float, - [94438] = 3, + anon_sym_is, + [95792] = 5, + ACTIONS(2085), 1, + anon_sym_LBRACE, + STATE(1385), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 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, + ACTIONS(1605), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_PLUS, 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(1745), 25, - sym_string_start, + ACTIONS(1607), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99759,52 +104287,50 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [94495] = 3, + [95844] = 10, + ACTIONS(2038), 1, + anon_sym_and, + ACTIONS(2040), 1, + anon_sym_PLUS, + ACTIONS(2083), 1, + anon_sym_or, + ACTIONS(2087), 1, + anon_sym_as, + ACTIONS(2089), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 23, + ACTIONS(1257), 2, 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_QMARK_DOT, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1285), 5, + anon_sym_EQ, 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(1847), 25, - sym_string_start, + ACTIONS(1291), 25, 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_for, + anon_sym_not, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -99813,161 +104339,162 @@ 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, - sym_float, - [94552] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1837), 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(1835), 25, - sym_string_start, - anon_sym_COMMA, + anon_sym_QMARK_LBRACK, + [95906] = 22, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2042), 1, anon_sym_LPAREN, + ACTIONS(2044), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2046), 1, anon_sym_STAR_STAR, + ACTIONS(2048), 1, anon_sym_QMARK_DOT, + ACTIONS(2050), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2056), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2058), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, + ACTIONS(2060), 1, anon_sym_AMP, + ACTIONS(2062), 1, anon_sym_CARET, + ACTIONS(2068), 1, + anon_sym_PIPE, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(1294), 1, + sym_argument_list, + STATE(2191), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2052), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2054), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2064), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_TILDE, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_LBRACK, - sym_float, - [94609] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1751), 23, + ACTIONS(1321), 11, 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_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_for, anon_sym_and, anon_sym_or, - 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(1749), 25, + anon_sym_PLUS_EQ, + [95992] = 8, + ACTIONS(2095), 1, + anon_sym_elif, + ACTIONS(2097), 1, + anon_sym_else, + STATE(1286), 1, + aux_sym_if_statement_repeat1, + STATE(1456), 1, + sym_elif_clause, + STATE(1678), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2091), 12, sym_string_start, - anon_sym_COMMA, + ts_builtin_sym_end, 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, - [94666] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1833), 23, + ACTIONS(2093), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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_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(1831), 25, - sym_string_start, + [96050] = 9, + ACTIONS(744), 1, + anon_sym_LF, + ACTIONS(2032), 1, + anon_sym_LBRACE, + ACTIONS(2034), 1, + sym_isMutableFlag, + ACTIONS(2036), 1, + anon_sym_QMARK_COLON, + STATE(1926), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2230), 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_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_DQUOTE, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -99975,52 +104502,47 @@ 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, 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, - sym_float, - [94723] = 3, + [96110] = 5, + ACTIONS(2040), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 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, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1417), 5, + anon_sym_EQ, 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(1685), 25, - sym_string_start, + ACTIONS(1419), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -100029,52 +104551,45 @@ 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_is, anon_sym_QMARK_LBRACK, - sym_float, - [94780] = 3, + [96162] = 5, + ACTIONS(2040), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 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, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 5, + anon_sym_EQ, 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(1599), 25, - sym_string_start, + ACTIONS(1415), 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_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_for, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -100083,37 +104598,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_is, anon_sym_QMARK_LBRACK, - sym_float, - [94837] = 9, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1971), 1, - sym_isMutableFlag, - ACTIONS(1973), 1, - anon_sym_QMARK_COLON, - STATE(1361), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2091), 1, - aux_sym_comparison_operator_repeat1, + [96214] = 5, + ACTIONS(2040), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 6, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1409), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 31, + ACTIONS(1411), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -100145,47 +104651,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94901] = 9, - ACTIONS(1969), 1, + [96266] = 9, + ACTIONS(1881), 1, anon_sym_LBRACE, - ACTIONS(1971), 1, + ACTIONS(1883), 1, sym_isMutableFlag, - ACTIONS(1973), 1, + ACTIONS(1885), 1, anon_sym_QMARK_COLON, - STATE(1361), 1, + STATE(1855), 1, sym_dict_expr, - STATE(2027), 1, + STATE(2053), 1, aux_sym_dotted_name_repeat1, - STATE(2214), 1, + STATE(2239), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 6, - anon_sym_EQ, + ACTIONS(746), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 31, + ACTIONS(744), 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_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, @@ -100200,47 +104702,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [94965] = 9, - ACTIONS(1969), 1, + [96326] = 9, + ACTIONS(1881), 1, anon_sym_LBRACE, - ACTIONS(1971), 1, + ACTIONS(1883), 1, sym_isMutableFlag, - ACTIONS(1973), 1, + ACTIONS(1885), 1, anon_sym_QMARK_COLON, - STATE(1219), 1, + STATE(1709), 1, aux_sym_comparison_operator_repeat1, - STATE(1361), 1, + STATE(1855), 1, sym_dict_expr, - STATE(2027), 1, + STATE(2053), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 6, - anon_sym_EQ, + ACTIONS(746), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 31, + ACTIONS(744), 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_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, @@ -100255,134 +104753,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [95029] = 5, - ACTIONS(1975), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 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(1446), 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, - [95083] = 5, - ACTIONS(1977), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 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, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1426), 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, - [95137] = 9, - ACTIONS(1979), 1, + [96386] = 10, + ACTIONS(2099), 1, + anon_sym_EQ, + ACTIONS(2101), 1, anon_sym_LBRACE, - ACTIONS(1981), 1, + ACTIONS(2103), 1, sym_isMutableFlag, - ACTIONS(1983), 1, + ACTIONS(2105), 1, anon_sym_QMARK_COLON, - STATE(1295), 1, + STATE(1969), 1, sym_dict_expr, - STATE(2027), 1, + STATE(2053), 1, aux_sym_dotted_name_repeat1, - STATE(2214), 1, + STATE(2234), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 6, - anon_sym_EQ, + ACTIONS(746), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 29, + ACTIONS(744), 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, @@ -100390,8 +104790,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -100406,204 +104805,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [95199] = 11, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1233), 1, - anon_sym_QMARK_DOT, - ACTIONS(1975), 1, - anon_sym_PLUS, - ACTIONS(1985), 1, - anon_sym_as, - ACTIONS(1987), 1, - anon_sym_if, - ACTIONS(1989), 1, - anon_sym_and, - ACTIONS(1991), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1491), 11, - sym_string_start, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + [96448] = 9, + ACTIONS(744), 1, + anon_sym_LF, + ACTIONS(2032), 1, anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1493), 21, - 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, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [95265] = 5, - ACTIONS(1977), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(2034), 1, + sym_isMutableFlag, + ACTIONS(2036), 1, + anon_sym_QMARK_COLON, + STATE(1627), 1, + aux_sym_comparison_operator_repeat1, + STATE(1926), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 12, - sym__dedent, - sym_string_start, + ACTIONS(746), 32, + 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_RBRACE, + anon_sym_in, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1446), 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, - [95319] = 11, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(1477), 1, - anon_sym_QMARK_DOT, - ACTIONS(1977), 1, anon_sym_PLUS, - ACTIONS(1993), 1, - anon_sym_as, - ACTIONS(1995), 1, - anon_sym_if, - ACTIONS(1997), 1, + 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, + [96508] = 6, + ACTIONS(2038), 1, anon_sym_and, - ACTIONS(1999), 1, - anon_sym_or, + ACTIONS(2040), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(336), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1491), 11, - sym__dedent, - sym_string_start, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1493), 21, - 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, - anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [95385] = 9, - ACTIONS(1979), 1, - anon_sym_LBRACE, - ACTIONS(1981), 1, - sym_isMutableFlag, - ACTIONS(1983), 1, - anon_sym_QMARK_COLON, - STATE(1295), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2191), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(696), 6, + ACTIONS(1413), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 29, + ACTIONS(1415), 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_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -100618,84 +104904,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [95447] = 5, - ACTIONS(1975), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(345), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 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(1426), 26, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_assert, - anon_sym_if, + [96562] = 8, + ACTIONS(2095), 1, + anon_sym_elif, + ACTIONS(2097), 1, 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, - [95501] = 5, - ACTIONS(1975), 1, - anon_sym_PLUS, + STATE(1219), 1, + aux_sym_if_statement_repeat1, + STATE(1456), 1, + sym_elif_clause, + STATE(1785), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(345), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 12, + ACTIONS(2107), 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1442), 26, + ACTIONS(2109), 22, 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, @@ -100708,45 +104948,37 @@ 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, - [95555] = 9, - ACTIONS(1979), 1, - anon_sym_LBRACE, - ACTIONS(1981), 1, - sym_isMutableFlag, - ACTIONS(1983), 1, - anon_sym_QMARK_COLON, - STATE(1295), 1, - sym_dict_expr, - STATE(1413), 1, + [96620] = 4, + STATE(2240), 1, aux_sym_comparison_operator_repeat1, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 6, + ACTIONS(1605), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 29, + ACTIONS(1607), 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, @@ -100755,7 +104987,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, @@ -100769,41 +105000,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [95617] = 9, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1233), 1, - anon_sym_QMARK_DOT, - ACTIONS(1975), 1, - anon_sym_PLUS, - ACTIONS(1989), 1, - anon_sym_and, - ACTIONS(1991), 1, - anon_sym_or, + [96670] = 8, + ACTIONS(2111), 1, + anon_sym_elif, + ACTIONS(2113), 1, + anon_sym_else, + STATE(1216), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + STATE(1764), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(345), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1485), 11, + ACTIONS(2107), 12, + 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_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1487), 23, + ACTIONS(2109), 22, anon_sym_import, - anon_sym_as, + anon_sym_DOT, anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -100822,41 +105050,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [95679] = 9, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(1477), 1, - anon_sym_QMARK_DOT, - ACTIONS(1977), 1, - anon_sym_PLUS, - ACTIONS(1997), 1, - anon_sym_and, - ACTIONS(1999), 1, - anon_sym_or, + [96728] = 8, + ACTIONS(2111), 1, + anon_sym_elif, + ACTIONS(2113), 1, + anon_sym_else, + STATE(1225), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + STATE(1738), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1485), 11, + ACTIONS(2117), 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, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1487), 23, + ACTIONS(2115), 22, anon_sym_import, - anon_sym_as, + anon_sym_DOT, anon_sym_assert, anon_sym_if, - anon_sym_else, anon_sym_lambda, anon_sym_all, anon_sym_any, @@ -100875,35 +105100,38 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [95741] = 5, - ACTIONS(1977), 1, - anon_sym_PLUS, + [96786] = 8, + ACTIONS(2111), 1, + anon_sym_elif, + ACTIONS(2113), 1, + anon_sym_else, + STATE(1218), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + STATE(1736), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 12, + ACTIONS(2121), 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, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(1442), 26, + ACTIONS(2119), 22, 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, @@ -100916,48 +105144,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, - [95795] = 11, - ACTIONS(1093), 1, - anon_sym_DOT, - ACTIONS(1233), 1, - anon_sym_QMARK_DOT, - ACTIONS(1975), 1, - anon_sym_PLUS, - ACTIONS(1985), 1, - anon_sym_as, - ACTIONS(1989), 1, - anon_sym_and, - ACTIONS(1991), 1, - anon_sym_or, - ACTIONS(2005), 1, + [96844] = 8, + ACTIONS(2111), 1, + anon_sym_elif, + ACTIONS(2113), 1, anon_sym_else, + STATE(1225), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + STATE(1716), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(345), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2001), 10, + ACTIONS(2091), 12, + sym__dedent, 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(2003), 21, + ACTIONS(2093), 22, anon_sym_import, + anon_sym_DOT, anon_sym_assert, anon_sym_if, anon_sym_lambda, @@ -100978,40 +105200,36 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [95860] = 11, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(1477), 1, - anon_sym_QMARK_DOT, - ACTIONS(1977), 1, - anon_sym_PLUS, - ACTIONS(1993), 1, - anon_sym_as, - ACTIONS(1997), 1, - anon_sym_and, - ACTIONS(1999), 1, - anon_sym_or, - ACTIONS(2005), 1, + [96902] = 8, + ACTIONS(2095), 1, + anon_sym_elif, + ACTIONS(2097), 1, anon_sym_else, + STATE(1286), 1, + aux_sym_if_statement_repeat1, + STATE(1456), 1, + sym_elif_clause, + STATE(1739), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2001), 10, - sym__dedent, + ACTIONS(2117), 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(2003), 21, + ACTIONS(2115), 22, anon_sym_import, + anon_sym_DOT, anon_sym_assert, anon_sym_if, anon_sym_lambda, @@ -101032,253 +105250,281 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [95925] = 9, - ACTIONS(2007), 1, - anon_sym_LBRACE, - ACTIONS(2009), 1, - sym_isMutableFlag, - ACTIONS(2011), 1, - anon_sym_QMARK_COLON, - STATE(1542), 1, + [96960] = 7, + ACTIONS(1921), 1, + anon_sym_is, + STATE(1075), 1, aux_sym_comparison_operator_repeat1, - STATE(1772), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1915), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1919), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 13, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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, - [95986] = 11, - ACTIONS(1093), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(1619), 17, anon_sym_DOT, - ACTIONS(1233), 1, - anon_sym_QMARK_DOT, - ACTIONS(1975), 1, - anon_sym_PLUS, - ACTIONS(1985), 1, anon_sym_as, - ACTIONS(1989), 1, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, anon_sym_and, - ACTIONS(1991), 1, anon_sym_or, - ACTIONS(2017), 1, - anon_sym_COMMA, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97016] = 7, + ACTIONS(1921), 1, + anon_sym_is, + STATE(1075), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(345), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2013), 10, + ACTIONS(1915), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1919), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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_RBRACE, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + anon_sym_PLUS, anon_sym_DQUOTE, anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2015), 21, - anon_sym_import, - anon_sym_assert, + ACTIONS(1619), 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_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, - [96051] = 9, - ACTIONS(2007), 1, - anon_sym_LBRACE, - ACTIONS(2009), 1, - sym_isMutableFlag, - ACTIONS(2011), 1, - anon_sym_QMARK_COLON, - STATE(1772), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, + [97072] = 7, + ACTIONS(1921), 1, + anon_sym_is, + STATE(1075), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1915), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1919), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 13, + sym_string_start, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, 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(1619), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97128] = 7, + ACTIONS(1921), 1, anon_sym_is, - anon_sym_QMARK_LBRACK, - [96112] = 10, - ACTIONS(2007), 1, - anon_sym_LBRACE, - ACTIONS(2009), 1, - sym_isMutableFlag, - ACTIONS(2011), 1, - anon_sym_QMARK_COLON, - ACTIONS(2019), 1, - anon_sym_COLON, - STATE(1772), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2195), 1, + STATE(1075), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1915), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1919), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 13, + sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_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, - [96175] = 11, - ACTIONS(951), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(1619), 17, anon_sym_DOT, - ACTIONS(1477), 1, - anon_sym_QMARK_DOT, - ACTIONS(1977), 1, - anon_sym_PLUS, - ACTIONS(1993), 1, anon_sym_as, - ACTIONS(1997), 1, + anon_sym_if, + anon_sym_lambda, + anon_sym_all, + anon_sym_any, + anon_sym_filter, + anon_sym_map, + anon_sym_not, anon_sym_and, - ACTIONS(1999), 1, anon_sym_or, - ACTIONS(2021), 1, - anon_sym_COMMA, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [97184] = 8, + ACTIONS(2095), 1, + anon_sym_elif, + ACTIONS(2097), 1, + anon_sym_else, + STATE(1203), 1, + aux_sym_if_statement_repeat1, + STATE(1456), 1, + sym_elif_clause, + STATE(1628), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(336), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2013), 10, + ACTIONS(2121), 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(2119), 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, + [97242] = 6, + ACTIONS(2125), 1, + anon_sym_elif, + STATE(1225), 1, + aux_sym_if_statement_repeat1, + STATE(1436), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2128), 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(2015), 21, + ACTIONS(2123), 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, @@ -101297,28 +105543,31 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [96240] = 4, + [97295] = 8, + ACTIONS(2130), 1, + sym_isMutableFlag, + ACTIONS(2132), 1, + anon_sym_QMARK_COLON, + STATE(1313), 1, + sym_dict_expr, + STATE(1811), 1, + aux_sym_comparison_operator_repeat1, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 7, - anon_sym_EQ, + ACTIONS(746), 5, anon_sym_STAR, - anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1225), 31, + ACTIONS(744), 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_DASH_GT, @@ -101329,8 +105578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, - anon_sym_then, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -101344,14 +105592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96291] = 4, + [97352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1159), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1376), 7, + ACTIONS(1843), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -101359,7 +105604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1378), 31, + ACTIONS(1841), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101391,14 +105636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96342] = 4, + [97399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 7, + ACTIONS(1839), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -101406,7 +105648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1428), 31, + ACTIONS(1837), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101438,14 +105680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96393] = 4, + [97446] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 7, + ACTIONS(1815), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -101453,7 +105692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1225), 31, + ACTIONS(1813), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101485,39 +105724,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96444] = 9, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1971), 1, - sym_isMutableFlag, - ACTIONS(1973), 1, - anon_sym_QMARK_COLON, - STATE(1361), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2091), 1, + [97493] = 4, + STATE(1301), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 6, + ACTIONS(1619), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + ACTIONS(1617), 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, @@ -101537,36 +105769,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96505] = 9, - ACTIONS(2007), 1, - anon_sym_LBRACE, - ACTIONS(2009), 1, - sym_isMutableFlag, - ACTIONS(2011), 1, - anon_sym_QMARK_COLON, - STATE(1772), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2195), 1, + [97542] = 4, + STATE(1301), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, + ACTIONS(1619), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 30, + ACTIONS(1617), 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, @@ -101574,7 +105799,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, @@ -101589,25 +105814,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96566] = 5, + [97591] = 4, + STATE(1301), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2023), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1159), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1364), 7, + ACTIONS(1619), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1362), 29, + ACTIONS(1617), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -101615,15 +105836,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, @@ -101637,37 +105859,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96619] = 10, - ACTIONS(2007), 1, - anon_sym_LBRACE, - ACTIONS(2009), 1, - sym_isMutableFlag, - ACTIONS(2011), 1, - anon_sym_QMARK_COLON, - ACTIONS(2026), 1, - anon_sym_COLON, - STATE(1772), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2195), 1, + [97640] = 4, + STATE(1301), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, + ACTIONS(1619), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 29, + ACTIONS(1617), 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, @@ -101675,7 +105889,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, @@ -101690,14 +105904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96682] = 4, + [97689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1271), 7, + ACTIONS(1753), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -101705,7 +105916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1269), 31, + ACTIONS(1751), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101737,115 +105948,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96733] = 23, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(2028), 1, - anon_sym_LPAREN, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2034), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_QMARK_DOT, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2040), 1, - anon_sym_PLUS, - ACTIONS(2042), 1, - anon_sym_DASH, - ACTIONS(2046), 1, - anon_sym_PIPE, - ACTIONS(2048), 1, - anon_sym_AMP, - ACTIONS(2050), 1, - anon_sym_CARET, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2056), 1, - anon_sym_QMARK_LBRACK, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [97736] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2032), 2, + ACTIONS(1785), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1783), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1280), 6, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [96821] = 12, - ACTIONS(2028), 1, anon_sym_LPAREN, - ACTIONS(2030), 1, anon_sym_LBRACK, - ACTIONS(2034), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2036), 1, anon_sym_QMARK_DOT, - ACTIONS(2056), 1, + 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, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [97783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1324), 4, + ACTIONS(1829), 7, anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 24, + ACTIONS(1831), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + 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_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -101856,21 +106035,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [96887] = 4, + anon_sym_QMARK_LBRACK, + [97830] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 6, + ACTIONS(1823), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1428), 31, + ACTIONS(1821), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101879,16 +106057,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, @@ -101902,13 +106080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96937] = 4, - STATE(1041), 1, - aux_sym_dotted_name_repeat1, + [97877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 7, + ACTIONS(1827), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -101916,7 +106092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 31, + ACTIONS(1825), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101948,24 +106124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [96987] = 6, - ACTIONS(2058), 1, - anon_sym_and, - ACTIONS(2060), 1, - anon_sym_PLUS, + [97924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1253), 5, + ACTIONS(1835), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 30, + ACTIONS(1833), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -101974,15 +106145,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, @@ -101996,71 +106168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97041] = 8, - ACTIONS(2066), 1, - anon_sym_elif, - ACTIONS(2068), 1, - anon_sym_else, - STATE(1175), 1, - aux_sym_if_statement_repeat1, - STATE(1411), 1, - sym_elif_clause, - STATE(1607), 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, - 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(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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [97099] = 4, + [97971] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 6, + ACTIONS(1809), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1225), 31, + ACTIONS(1811), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102069,16 +106189,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, @@ -102092,42 +106212,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97149] = 9, - ACTIONS(694), 1, - anon_sym_LF, - ACTIONS(2070), 1, - anon_sym_LBRACE, - ACTIONS(2072), 1, - sym_isMutableFlag, - ACTIONS(2074), 1, - anon_sym_QMARK_COLON, - STATE(1816), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2198), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [98018] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 32, + ACTIONS(1805), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1807), 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, @@ -102135,178 +106250,115 @@ 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, - [97209] = 7, - ACTIONS(1913), 1, - anon_sym_is, - STATE(1066), 1, - aux_sym_comparison_operator_repeat1, + [98065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 3, - anon_sym_in, + ACTIONS(1799), 7, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1911), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 13, - sym_string_start, + ACTIONS(1801), 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_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1663), 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, - [97265] = 7, - ACTIONS(1913), 1, - anon_sym_is, - STATE(1066), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1889), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1911), 4, + 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, - ACTIONS(1665), 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_is, + anon_sym_QMARK_LBRACK, + [98112] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1687), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1663), 17, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1685), 31, 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, - [97321] = 8, - ACTIONS(2078), 1, - anon_sym_elif, - ACTIONS(2080), 1, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, - STATE(1289), 1, - aux_sym_if_statement_repeat1, - STATE(1451), 1, - sym_elif_clause, - STATE(1774), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2082), 12, - sym__dedent, - sym_string_start, 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_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2076), 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, - [97379] = 5, - ACTIONS(2060), 1, - anon_sym_PLUS, + 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, + [98159] = 4, + ACTIONS(2134), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1426), 5, + ACTIONS(1524), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1424), 31, + ACTIONS(1526), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102324,7 +106376,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, @@ -102338,22 +106389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97431] = 5, - ACTIONS(2060), 1, - anon_sym_PLUS, + [98208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 5, + ACTIONS(1787), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 31, + ACTIONS(1789), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102362,16 +106410,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, @@ -102385,71 +106433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97483] = 8, - ACTIONS(2066), 1, - anon_sym_elif, - ACTIONS(2068), 1, - anon_sym_else, - STATE(1256), 1, - aux_sym_if_statement_repeat1, - STATE(1411), 1, - sym_elif_clause, - STATE(1614), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2084), 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(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, - [97541] = 4, + [98255] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1271), 6, + ACTIONS(1763), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1269), 31, + ACTIONS(1765), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102458,16 +106454,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, @@ -102481,44 +106477,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97591] = 9, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(1875), 1, - sym_isMutableFlag, - ACTIONS(1877), 1, - anon_sym_QMARK_COLON, - STATE(1755), 1, - aux_sym_comparison_operator_repeat1, - STATE(1833), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, + [98302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, + ACTIONS(1763), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 29, - sym__newline, + ACTIONS(1765), 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, @@ -102532,21 +106521,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97651] = 4, + [98349] = 5, + ACTIONS(2136), 1, + anon_sym_PIPE, + STATE(1248), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 6, + ACTIONS(1517), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1225), 31, + ACTIONS(1519), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102567,7 +106557,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, @@ -102578,137 +106567,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97701] = 8, - ACTIONS(2078), 1, - anon_sym_elif, - ACTIONS(2080), 1, - anon_sym_else, - STATE(1289), 1, - aux_sym_if_statement_repeat1, - STATE(1451), 1, - sym_elif_clause, - STATE(1796), 1, - sym_else_clause, + [98400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2084), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(1817), 6, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2086), 22, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1819), 32, 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, - [97759] = 23, - ACTIONS(1320), 1, - anon_sym_EQ, - ACTIONS(2028), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2030), 1, anon_sym_LBRACK, - ACTIONS(2034), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2036), 1, + anon_sym_for, anon_sym_QMARK_DOT, - ACTIONS(2038), 1, anon_sym_not, - ACTIONS(2040), 1, - anon_sym_PLUS, - ACTIONS(2042), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, anon_sym_DASH, - ACTIONS(2046), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2050), 1, anon_sym_CARET, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2056), 1, - anon_sym_QMARK_LBRACK, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2032), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1318), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [97847] = 5, - ACTIONS(2060), 1, - anon_sym_PLUS, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [98447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 5, + ACTIONS(1611), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1444), 31, + ACTIONS(1609), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -102717,16 +106632,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, @@ -102740,36 +106655,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97899] = 9, - ACTIONS(1979), 1, - anon_sym_LBRACE, - ACTIONS(1981), 1, - sym_isMutableFlag, - ACTIONS(1983), 1, - anon_sym_QMARK_COLON, - STATE(1295), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2191), 1, - aux_sym_comparison_operator_repeat1, + [98494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 6, + ACTIONS(1603), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 27, + ACTIONS(1601), 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, @@ -102777,7 +106685,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102791,52 +106699,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [97959] = 14, - ACTIONS(2028), 1, - anon_sym_LPAREN, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2034), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_QMARK_DOT, - ACTIONS(2040), 1, - anon_sym_PLUS, - ACTIONS(2042), 1, - anon_sym_DASH, - ACTIONS(2056), 1, - anon_sym_QMARK_LBRACK, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [98541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 2, + ACTIONS(1759), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1324), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 23, + ACTIONS(1761), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + 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, @@ -102847,319 +106742,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [98029] = 15, - ACTIONS(2028), 1, - anon_sym_LPAREN, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2034), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_QMARK_DOT, - ACTIONS(2040), 1, - anon_sym_PLUS, - ACTIONS(2042), 1, - anon_sym_DASH, - ACTIONS(2056), 1, anon_sym_QMARK_LBRACK, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, + [98588] = 10, + ACTIONS(1471), 1, + sym_string_start, + ACTIONS(1973), 1, + anon_sym_LBRACE, + ACTIONS(1975), 1, + sym_isMutableFlag, + ACTIONS(1977), 1, + anon_sym_QMARK_COLON, + STATE(1394), 1, + sym_dict_expr, + STATE(2137), 1, aux_sym_comparison_operator_repeat1, + STATE(2305), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 2, + ACTIONS(746), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1324), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 21, + ACTIONS(744), 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_for, + 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_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, - [98101] = 16, - ACTIONS(2028), 1, - anon_sym_LPAREN, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2034), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_QMARK_DOT, - ACTIONS(2040), 1, - anon_sym_PLUS, - ACTIONS(2042), 1, - anon_sym_DASH, - ACTIONS(2050), 1, - anon_sym_CARET, - ACTIONS(2056), 1, anon_sym_QMARK_LBRACK, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [98649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 2, + ACTIONS(1735), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1324), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 20, + ACTIONS(1737), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + 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, - [98175] = 17, - ACTIONS(2028), 1, - anon_sym_LPAREN, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2034), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_QMARK_DOT, - ACTIONS(2040), 1, - anon_sym_PLUS, - ACTIONS(2042), 1, - anon_sym_DASH, - ACTIONS(2048), 1, - anon_sym_AMP, - ACTIONS(2050), 1, - anon_sym_CARET, - ACTIONS(2056), 1, anon_sym_QMARK_LBRACK, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [98696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 2, + ACTIONS(1729), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1324), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 19, + ACTIONS(1731), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + 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, - [98251] = 7, - ACTIONS(1913), 1, - anon_sym_is, - STATE(1066), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [98743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1911), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 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, + ACTIONS(1729), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1663), 17, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1731), 31, 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, - [98307] = 8, - ACTIONS(2078), 1, - anon_sym_elif, - ACTIONS(2080), 1, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, - STATE(1179), 1, - aux_sym_if_statement_repeat1, - STATE(1451), 1, - sym_elif_clause, - STATE(1746), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2062), 12, - sym__dedent, - sym_string_start, 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(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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [98365] = 10, - ACTIONS(2028), 1, - anon_sym_LPAREN, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2034), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2036), 1, anon_sym_QMARK_DOT, - ACTIONS(2056), 1, + 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, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [98790] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 6, + 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(1322), 26, + ACTIONS(1715), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + 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_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103172,46 +106969,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [98427] = 10, - ACTIONS(2028), 1, - anon_sym_LPAREN, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2034), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_QMARK_DOT, - ACTIONS(2056), 1, anon_sym_QMARK_LBRACK, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [98837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 6, + ACTIONS(1705), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 26, + ACTIONS(1707), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + 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_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103224,24 +107013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [98489] = 6, - ACTIONS(2058), 1, - anon_sym_and, - ACTIONS(2060), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [98884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 5, + ACTIONS(1701), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 30, + ACTIONS(1703), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103250,15 +107035,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, @@ -103272,24 +107058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98543] = 5, + [98931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2088), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1192), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1364), 6, + ACTIONS(1873), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1362), 29, + ACTIONS(1875), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -103297,15 +107079,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, @@ -103319,43 +107102,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98595] = 8, - ACTIONS(1442), 1, - anon_sym_EQ, - ACTIONS(2058), 1, - anon_sym_and, - ACTIONS(2060), 1, - anon_sym_PLUS, + [98978] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + ACTIONS(1869), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 11, + ACTIONS(1871), 31, 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(1465), 19, 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_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103369,44 +107146,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98653] = 9, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(1875), 1, - sym_isMutableFlag, - ACTIONS(1877), 1, - anon_sym_QMARK_COLON, - STATE(1833), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, - aux_sym_comparison_operator_repeat1, + [99025] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, + ACTIONS(1865), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 29, - sym__newline, + ACTIONS(1867), 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, @@ -103420,110 +107190,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98713] = 23, - ACTIONS(1404), 1, + [99072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1861), 7, anon_sym_EQ, - ACTIONS(2028), 1, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1863), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2030), 1, anon_sym_LBRACK, - ACTIONS(2034), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2036), 1, anon_sym_QMARK_DOT, - ACTIONS(2038), 1, anon_sym_not, - ACTIONS(2040), 1, - anon_sym_PLUS, - ACTIONS(2042), 1, - anon_sym_DASH, - ACTIONS(2046), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_then, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2050), 1, anon_sym_CARET, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2056), 1, - anon_sym_QMARK_LBRACK, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2032), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1402), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_for, - anon_sym_PLUS_EQ, - [98801] = 10, - ACTIONS(2091), 1, - anon_sym_EQ, - ACTIONS(2093), 1, - anon_sym_LBRACE, - ACTIONS(2095), 1, - sym_isMutableFlag, - ACTIONS(2097), 1, - anon_sym_QMARK_COLON, - STATE(1942), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2211), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [99119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, + ACTIONS(1857), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + ACTIONS(1859), 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, @@ -103537,79 +107278,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98863] = 7, - ACTIONS(1913), 1, - anon_sym_is, - STATE(1066), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1889), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1911), 4, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 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(1663), 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, - [98919] = 7, - ACTIONS(2058), 1, - anon_sym_and, - ACTIONS(2060), 1, - anon_sym_PLUS, + [99166] = 4, + ACTIONS(2139), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1463), 5, + ACTIONS(1501), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 25, + ACTIONS(1503), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, @@ -103619,9 +107305,11 @@ 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, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103635,13 +107323,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [98975] = 4, - STATE(1165), 1, - aux_sym_dotted_name_repeat1, + [99215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1461), 7, + ACTIONS(1853), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -103649,7 +107335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1459), 31, + ACTIONS(1855), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103681,34 +107367,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99025] = 9, - ACTIONS(694), 1, - anon_sym_LF, - ACTIONS(2070), 1, + [99262] = 9, + ACTIONS(2101), 1, anon_sym_LBRACE, - ACTIONS(2072), 1, + ACTIONS(2103), 1, sym_isMutableFlag, - ACTIONS(2074), 1, + ACTIONS(2105), 1, anon_sym_QMARK_COLON, - STATE(1816), 1, + STATE(1969), 1, sym_dict_expr, - STATE(2027), 1, + STATE(2053), 1, aux_sym_dotted_name_repeat1, - STATE(2214), 1, + STATE(2234), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 32, + ACTIONS(746), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(744), 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, @@ -103716,7 +107404,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, @@ -103724,101 +107411,70 @@ 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, - [99085] = 22, - ACTIONS(1284), 1, - anon_sym_EQ, - ACTIONS(2028), 1, - anon_sym_LPAREN, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2034), 1, - anon_sym_STAR_STAR, - ACTIONS(2036), 1, - anon_sym_QMARK_DOT, - ACTIONS(2040), 1, - anon_sym_PLUS, - ACTIONS(2042), 1, - anon_sym_DASH, - ACTIONS(2046), 1, - anon_sym_PIPE, - ACTIONS(2048), 1, - anon_sym_AMP, - ACTIONS(2050), 1, - anon_sym_CARET, - ACTIONS(2056), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(1220), 1, - aux_sym_comparison_operator_repeat1, - STATE(1347), 1, - sym_argument_list, + [99321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 2, + ACTIONS(1605), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 11, + ACTIONS(1607), 31, 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_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, - [99171] = 8, - ACTIONS(2058), 1, - anon_sym_and, - ACTIONS(2060), 1, - anon_sym_PLUS, - ACTIONS(2107), 1, - anon_sym_or, + 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, + [99368] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 5, + ACTIONS(1849), 7, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 27, + ACTIONS(1851), 31, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -103826,13 +107482,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, @@ -103846,44 +107505,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99229] = 10, - ACTIONS(2058), 1, - anon_sym_and, - ACTIONS(2060), 1, - anon_sym_PLUS, - ACTIONS(2107), 1, - anon_sym_or, - ACTIONS(2109), 1, - anon_sym_as, - ACTIONS(2111), 1, - anon_sym_if, + [99415] = 9, + ACTIONS(2101), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, + sym_isMutableFlag, + ACTIONS(2105), 1, + anon_sym_QMARK_COLON, + STATE(1877), 1, + aux_sym_comparison_operator_repeat1, + STATE(1969), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1493), 5, - anon_sym_EQ, + ACTIONS(746), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 25, + ACTIONS(744), 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_PLUS_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -103898,21 +107555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99291] = 4, + [99474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1192), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1376), 6, + ACTIONS(1727), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1378), 31, + ACTIONS(1725), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -103921,16 +107576,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, @@ -103944,42 +107599,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99341] = 9, - ACTIONS(694), 1, - anon_sym_LF, - ACTIONS(2070), 1, - anon_sym_LBRACE, - ACTIONS(2072), 1, - sym_isMutableFlag, - ACTIONS(2074), 1, - anon_sym_QMARK_COLON, - STATE(1776), 1, + [99521] = 4, + STATE(1231), 1, aux_sym_comparison_operator_repeat1, - STATE(1816), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 32, + ACTIONS(1605), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 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, 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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -103987,154 +107638,87 @@ 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, - [99401] = 8, - ACTIONS(2066), 1, - anon_sym_elif, - ACTIONS(2068), 1, - anon_sym_else, - STATE(1256), 1, - aux_sym_if_statement_repeat1, - STATE(1411), 1, - sym_elif_clause, - STATE(1730), 1, - sym_else_clause, + [99570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + ACTIONS(1697), 7, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, - anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2076), 22, - anon_sym_import, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1699), 31, 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, - [99459] = 8, - ACTIONS(2078), 1, - anon_sym_elif, - ACTIONS(2080), 1, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, - STATE(1172), 1, - aux_sym_if_statement_repeat1, - STATE(1451), 1, - sym_elif_clause, - STATE(1771), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2115), 12, - sym__dedent, - sym_string_start, 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(2113), 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, - [99517] = 10, - ACTIONS(2028), 1, - anon_sym_LPAREN, - ACTIONS(2030), 1, - anon_sym_LBRACK, - ACTIONS(2034), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2036), 1, anon_sym_QMARK_DOT, - ACTIONS(2056), 1, + 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, - STATE(1347), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [99617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1372), 6, + ACTIONS(1847), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1374), 26, + ACTIONS(1845), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + 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_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -104147,13 +107731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [99579] = 4, - STATE(2212), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [99664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 7, + ACTIONS(1817), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -104161,7 +107744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1819), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104193,125 +107776,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99629] = 22, - ACTIONS(1284), 1, - anon_sym_EQ, - ACTIONS(2028), 1, + [99711] = 8, + ACTIONS(2130), 1, + sym_isMutableFlag, + ACTIONS(2132), 1, + anon_sym_QMARK_COLON, + STATE(1313), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(746), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(744), 28, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2030), 1, anon_sym_LBRACK, - ACTIONS(2034), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2036), 1, anon_sym_QMARK_DOT, - ACTIONS(2040), 1, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, - ACTIONS(2042), 1, - anon_sym_DASH, - ACTIONS(2046), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2048), 1, anon_sym_AMP, - ACTIONS(2050), 1, anon_sym_CARET, - ACTIONS(2056), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 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(1347), 1, - sym_argument_list, - STATE(2149), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [99768] = 4, + STATE(1299), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2032), 2, + ACTIONS(1459), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2044), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2052), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2103), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 11, + ACTIONS(1461), 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, - [99715] = 8, - ACTIONS(2066), 1, - anon_sym_elif, - ACTIONS(2068), 1, - anon_sym_else, - STATE(1206), 1, - aux_sym_if_statement_repeat1, - STATE(1411), 1, - sym_elif_clause, - STATE(1615), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2115), 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(2113), 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, - [99773] = 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, + [99817] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 7, + ACTIONS(1679), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -104319,7 +107882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 31, + ACTIONS(1677), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104351,19 +107914,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99820] = 3, + [99864] = 4, + STATE(1277), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1525), 7, + ACTIONS(1469), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1523), 31, + ACTIONS(1471), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104372,16 +107936,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, @@ -104395,11 +107959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99867] = 3, + [99913] = 5, + ACTIONS(2141), 1, + anon_sym_in, + ACTIONS(2143), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 7, + ACTIONS(1605), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -104407,7 +107975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 31, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104418,10 +107986,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, @@ -104439,11 +108005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99914] = 3, + [99964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1585), 7, + ACTIONS(1621), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -104451,7 +108017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1583), 31, + ACTIONS(1623), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104483,11 +108049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [99961] = 3, + [100011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 7, + ACTIONS(1795), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -104495,7 +108061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 31, + ACTIONS(1797), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104527,11 +108093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100008] = 3, + [100058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1535), 7, + ACTIONS(1791), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -104539,7 +108105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1533), 31, + ACTIONS(1793), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104571,83 +108137,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100055] = 4, - STATE(1250), 1, + [100105] = 8, + ACTIONS(2130), 1, + sym_isMutableFlag, + ACTIONS(2132), 1, + anon_sym_QMARK_COLON, + STATE(1313), 1, + sym_dict_expr, + STATE(2053), 1, aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1461), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1459), 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, - 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, - [100104] = 4, - STATE(1294), 1, + STATE(2223), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 6, - anon_sym_EQ, + ACTIONS(746), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 31, + ACTIONS(744), 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, @@ -104661,20 +108186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100153] = 4, - STATE(1294), 1, - aux_sym_comparison_operator_repeat1, + [100162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 6, + ACTIONS(1663), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 31, + ACTIONS(1661), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104683,16 +108207,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, @@ -104706,159 +108230,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100202] = 4, - STATE(1294), 1, - aux_sym_comparison_operator_repeat1, + [100209] = 6, + ACTIONS(2145), 1, + anon_sym_elif, + STATE(1286), 1, + aux_sym_if_statement_repeat1, + STATE(1456), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1665), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2128), 12, + sym_string_start, + ts_builtin_sym_end, 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_DASH, - anon_sym_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, - [100251] = 4, - ACTIONS(2117), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1265), 7, - anon_sym_EQ, - anon_sym_STAR, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1263), 30, + anon_sym_TILDE, + sym_float, + ACTIONS(2123), 23, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [100300] = 8, - ACTIONS(2119), 1, - sym_isMutableFlag, - ACTIONS(2121), 1, - anon_sym_QMARK_COLON, - STATE(1295), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2205), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(696), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 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_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, - anon_sym_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, - [100357] = 4, - STATE(1294), 1, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [100262] = 4, + STATE(2130), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 6, + ACTIONS(1605), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 31, + ACTIONS(1607), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104890,13 +108322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100406] = 4, - ACTIONS(2123), 1, + [100311] = 4, + ACTIONS(2148), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 7, + ACTIONS(1534), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -104904,7 +108336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1245), 30, + ACTIONS(1536), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -104935,57 +108367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100455] = 5, - ACTIONS(2125), 1, - anon_sym_PIPE, - STATE(1226), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1275), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1273), 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - 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, - [100506] = 3, + [100360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 7, + ACTIONS(1779), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -104993,7 +108379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1869), 31, + ACTIONS(1781), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105025,11 +108411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100553] = 3, + [100407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 7, + ACTIONS(1669), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105037,7 +108423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1865), 31, + ACTIONS(1671), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105069,11 +108455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100600] = 3, + [100454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 7, + ACTIONS(1665), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105081,7 +108467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 31, + ACTIONS(1667), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105113,11 +108499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100647] = 3, + [100501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 7, + ACTIONS(1775), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105125,7 +108511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 31, + ACTIONS(1777), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105157,11 +108543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100694] = 3, + [100548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 7, + ACTIONS(1771), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105169,7 +108555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 31, + ACTIONS(1773), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105201,43 +108587,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100741] = 10, - ACTIONS(1459), 1, - sym_string_start, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1971), 1, - sym_isMutableFlag, - ACTIONS(1973), 1, - anon_sym_QMARK_COLON, - STATE(1361), 1, - sym_dict_expr, - STATE(2091), 1, - aux_sym_comparison_operator_repeat1, - STATE(2265), 1, - aux_sym_dotted_name_repeat1, + [100595] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, + ACTIONS(1743), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 27, + ACTIONS(1745), 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_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, @@ -105252,19 +108631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100802] = 3, + [100642] = 4, + STATE(1248), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 7, + ACTIONS(1445), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 31, + ACTIONS(1443), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105273,16 +108653,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, @@ -105296,11 +108676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100849] = 3, + [100691] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 7, + ACTIONS(1767), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105308,7 +108688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 31, + ACTIONS(1769), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105340,42 +108720,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100896] = 9, - ACTIONS(2093), 1, - anon_sym_LBRACE, - ACTIONS(2095), 1, - sym_isMutableFlag, - ACTIONS(2097), 1, - anon_sym_QMARK_COLON, - STATE(1942), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, - aux_sym_comparison_operator_repeat1, + [100738] = 5, + ACTIONS(2150), 1, + anon_sym_EQ, + STATE(1295), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, + ACTIONS(1465), 5, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + ACTIONS(1463), 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, @@ -105390,19 +108766,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [100955] = 3, + [100789] = 4, + STATE(1295), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1541), 7, + ACTIONS(1655), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 31, + ACTIONS(1653), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105411,16 +108788,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, @@ -105434,20 +108811,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101002] = 4, - STATE(2212), 1, - aux_sym_comparison_operator_repeat1, + [100838] = 5, + STATE(1299), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2152), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1475), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1473), 29, + 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, + anon_sym_QMARK_LBRACK, + [100889] = 4, + STATE(1295), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1542), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1544), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105479,11 +108902,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101051] = 3, + [100938] = 8, + ACTIONS(2158), 1, + anon_sym_not, + ACTIONS(2164), 1, + anon_sym_is, + STATE(1301), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2161), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 4, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(2155), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 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, + [100995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 7, + ACTIONS(1755), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105491,7 +108963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1587), 31, + ACTIONS(1757), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105523,11 +108995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101098] = 3, + [101042] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 7, + ACTIONS(1659), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105535,7 +109007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1857), 31, + ACTIONS(1657), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105567,19 +109039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101145] = 3, + [101089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 7, + ACTIONS(1735), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1831), 31, + ACTIONS(1737), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105588,16 +109059,17 @@ 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, @@ -105611,11 +109083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101192] = 3, + [101136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 7, + ACTIONS(1747), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105623,7 +109095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 31, + ACTIONS(1749), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105655,42 +109127,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101239] = 8, - ACTIONS(2119), 1, - sym_isMutableFlag, - ACTIONS(2121), 1, - anon_sym_QMARK_COLON, + [101183] = 4, STATE(1295), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, - aux_sym_comparison_operator_repeat1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 5, + ACTIONS(1550), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1552), 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, + 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, + [101232] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1687), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + ACTIONS(1685), 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_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, + [101279] = 4, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 6, + anon_sym_EQ, + anon_sym_STAR, anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 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, @@ -105704,11 +109261,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101296] = 3, + [101328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 7, + ACTIONS(1743), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105716,7 +109273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 31, + ACTIONS(1745), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105748,11 +109305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101343] = 3, + [101375] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 7, + ACTIONS(1613), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105760,7 +109317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1845), 31, + ACTIONS(1615), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105792,19 +109349,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101390] = 3, + [101422] = 4, + STATE(1295), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 7, + ACTIONS(1501), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1841), 31, + ACTIONS(1503), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105813,16 +109371,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, @@ -105836,21 +109394,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101437] = 4, - ACTIONS(2128), 1, - anon_sym_DASH_GT, + [101471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 7, + ACTIONS(1823), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 30, + ACTIONS(1821), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105859,6 +109414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR_STAR, @@ -105868,6 +109424,7 @@ 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, @@ -105881,11 +109438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101486] = 3, + [101518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 7, + ACTIONS(1739), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105893,7 +109450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 31, + ACTIONS(1741), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -105925,37 +109482,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101533] = 3, + [101565] = 9, + ACTIONS(2101), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, + sym_isMutableFlag, + ACTIONS(2105), 1, + anon_sym_QMARK_COLON, + STATE(1969), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 7, - anon_sym_EQ, + ACTIONS(746), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1691), 31, + ACTIONS(744), 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_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_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -105969,11 +109532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101580] = 3, + [101624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 7, + ACTIONS(1727), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -105981,7 +109544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 31, + ACTIONS(1725), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106013,20 +109576,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101627] = 4, - STATE(1293), 1, - aux_sym_dotted_name_repeat1, + [101671] = 4, + STATE(1295), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 6, + ACTIONS(1517), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 31, + ACTIONS(1519), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106058,65 +109621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101676] = 9, - ACTIONS(2093), 1, - anon_sym_LBRACE, - ACTIONS(2095), 1, - sym_isMutableFlag, - ACTIONS(2097), 1, - anon_sym_QMARK_COLON, - STATE(1926), 1, - aux_sym_comparison_operator_repeat1, - STATE(1942), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, + [101720] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 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, - [101735] = 5, - ACTIONS(2130), 1, - anon_sym_in, - ACTIONS(2132), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 7, + ACTIONS(1597), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106124,7 +109633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1599), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106135,8 +109644,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_EQ, @@ -106154,20 +109665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101786] = 4, - STATE(2159), 1, - aux_sym_comparison_operator_repeat1, + [101767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1723), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1721), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106176,66 +109686,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [101835] = 9, - ACTIONS(2093), 1, + anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(2095), 1, - sym_isMutableFlag, - ACTIONS(2097), 1, - anon_sym_QMARK_COLON, - STATE(1942), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2211), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(696), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(694), 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_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -106249,11 +109709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101894] = 3, + [101814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 7, + ACTIONS(1719), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106261,7 +109721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 31, + ACTIONS(1717), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106293,58 +109753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [101941] = 6, - ACTIONS(2138), 1, - anon_sym_elif, - STATE(1256), 1, - aux_sym_if_statement_repeat1, - STATE(1411), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2134), 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(2136), 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, - [101994] = 3, + [101861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 7, + ACTIONS(1675), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106352,7 +109765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 31, + ACTIONS(1673), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106384,11 +109797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102041] = 3, + [101908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 7, + ACTIONS(1695), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106396,7 +109809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 31, + ACTIONS(1693), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106428,11 +109841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102088] = 3, + [101955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 7, + ACTIONS(1605), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106440,7 +109853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1787), 31, + ACTIONS(1607), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106472,11 +109885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102135] = 3, + [102002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1531), 7, + ACTIONS(1319), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, @@ -106484,7 +109897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1529), 31, + ACTIONS(1321), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106516,20 +109929,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102182] = 4, - STATE(1280), 1, - aux_sym_union_type_repeat1, + [102049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1243), 6, + ACTIONS(1475), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1241), 31, + ACTIONS(1473), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106561,19 +109972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102231] = 3, + [102095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 7, + ACTIONS(1719), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 31, + ACTIONS(1717), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106582,16 +109992,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, @@ -106605,19 +110015,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102278] = 3, + [102141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 7, + ACTIONS(1809), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 31, + ACTIONS(1811), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106626,16 +110035,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, @@ -106649,19 +110058,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102325] = 3, + [102187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 7, + ACTIONS(1805), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 31, + ACTIONS(1807), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106670,16 +110078,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, @@ -106693,19 +110101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102372] = 3, + [102233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 7, + ACTIONS(1835), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 31, + ACTIONS(1833), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106714,16 +110121,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, @@ -106737,19 +110144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102419] = 3, + [102279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 7, + ACTIONS(1827), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 31, + ACTIONS(1825), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106758,16 +110164,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, @@ -106781,20 +110187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102466] = 4, - STATE(1221), 1, - aux_sym_comparison_operator_repeat1, + [102325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1763), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1765), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106826,19 +110230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102515] = 3, + [102371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 7, + ACTIONS(1787), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 31, + ACTIONS(1789), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106847,16 +110250,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, @@ -106870,19 +110273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102562] = 3, + [102417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 7, + ACTIONS(1869), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 31, + ACTIONS(1871), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106891,16 +110293,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, @@ -106914,39 +110316,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102609] = 3, + [102463] = 14, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2177), 1, + anon_sym_PLUS, + ACTIONS(2179), 1, + anon_sym_DASH, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 7, - anon_sym_EQ, + ACTIONS(2171), 2, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1530), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1775), 31, + ACTIONS(1532), 21, 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, @@ -106957,20 +110370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [102656] = 3, + [102531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 7, + ACTIONS(1785), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 31, + ACTIONS(1783), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -106979,16 +110390,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, @@ -107002,19 +110413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102703] = 3, + [102577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 7, + ACTIONS(1753), 6, 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(1751), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107023,16 +110433,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, @@ -107046,63 +110456,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102750] = 3, + [102623] = 15, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2177), 1, + anon_sym_PLUS, + ACTIONS(2179), 1, + anon_sym_DASH, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 7, - anon_sym_EQ, + ACTIONS(2171), 2, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1530), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 31, + ACTIONS(1532), 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_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, - [102797] = 3, + [102693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 7, + ACTIONS(1613), 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(1615), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107111,16 +110531,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, @@ -107134,19 +110554,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102844] = 3, + [102739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 7, + ACTIONS(1611), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 31, + ACTIONS(1609), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107155,16 +110574,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, @@ -107178,19 +110597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102891] = 3, + [102785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 7, + ACTIONS(1603), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 31, + ACTIONS(1601), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107199,16 +110617,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, @@ -107222,20 +110640,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102938] = 4, - STATE(1280), 1, - aux_sym_union_type_repeat1, + [102831] = 5, + ACTIONS(2187), 1, + anon_sym_in, + ACTIONS(2189), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 6, + ACTIONS(1605), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1414), 31, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107245,11 +110665,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, @@ -107267,68 +110685,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [102987] = 8, - ACTIONS(2119), 1, - sym_isMutableFlag, - ACTIONS(2121), 1, - anon_sym_QMARK_COLON, - STATE(1295), 1, - sym_dict_expr, - STATE(1708), 1, + [102881] = 16, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2177), 1, + anon_sym_PLUS, + ACTIONS(2179), 1, + anon_sym_DASH, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2191), 1, + anon_sym_CARET, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 5, + ACTIONS(2171), 2, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1530), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 28, + ACTIONS(1532), 18, 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_COLON, + 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_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_PLUS_EQ, + 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, - [103044] = 3, + [102953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 7, + ACTIONS(1815), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1813), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107337,16 +110761,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, @@ -107360,20 +110784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103091] = 4, - STATE(1226), 1, - aux_sym_union_type_repeat1, + [102999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 6, + ACTIONS(1839), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 31, + ACTIONS(1837), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107405,19 +110827,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103140] = 3, + [103045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 7, + ACTIONS(1843), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1328), 31, + ACTIONS(1841), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107426,16 +110847,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, @@ -107449,37 +110870,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103187] = 3, + [103091] = 6, + ACTIONS(2193), 1, + anon_sym_and, + ACTIONS(2195), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 7, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 31, + ACTIONS(1415), 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_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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -107493,19 +110916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103234] = 3, + [103143] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 7, + ACTIONS(1847), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1845), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107514,16 +110936,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, @@ -107537,63 +110959,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103281] = 3, + [103189] = 17, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2177), 1, + anon_sym_PLUS, + ACTIONS(2179), 1, + anon_sym_DASH, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2191), 1, + anon_sym_CARET, + ACTIONS(2197), 1, + anon_sym_AMP, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 7, - anon_sym_EQ, + ACTIONS(2171), 2, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1530), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 31, + ACTIONS(1532), 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_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, - [103328] = 3, + [103263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 7, + ACTIONS(1849), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1807), 31, + ACTIONS(1851), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107602,16 +111036,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, @@ -107625,19 +111059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103375] = 3, + [103309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 7, + ACTIONS(1727), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 31, + ACTIONS(1725), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107646,16 +111079,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, @@ -107669,19 +111102,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103422] = 3, + [103355] = 22, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2177), 1, + anon_sym_PLUS, + ACTIONS(2179), 1, + anon_sym_DASH, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2191), 1, + anon_sym_CARET, + ACTIONS(2197), 1, + anon_sym_AMP, + ACTIONS(2201), 1, + anon_sym_not, + ACTIONS(2203), 1, + anon_sym_PIPE, + ACTIONS(2207), 1, + anon_sym_is, + STATE(1309), 1, + sym_argument_list, + STATE(1470), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 7, + ACTIONS(2171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2205), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2199), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1321), 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, + [103439] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1759), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1779), 31, + ACTIONS(1761), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107690,16 +111184,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, @@ -107713,19 +111207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103469] = 3, + [103485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 7, + ACTIONS(1799), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1807), 31, + ACTIONS(1801), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107734,16 +111227,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, @@ -107757,87 +111250,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103516] = 6, - ACTIONS(2141), 1, - anon_sym_elif, - STATE(1289), 1, - aux_sym_if_statement_repeat1, - STATE(1451), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2134), 12, - sym__dedent, - sym_string_start, + [103531] = 12, + ACTIONS(2167), 1, anon_sym_LPAREN, + ACTIONS(2169), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2136), 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, - [103569] = 4, - STATE(1280), 1, - aux_sym_union_type_repeat1, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, - anon_sym_EQ, + ACTIONS(2171), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1530), 4, + anon_sym_EQ, + anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 31, + ACTIONS(1532), 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, @@ -107848,39 +111302,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [103595] = 10, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - [103618] = 5, - ACTIONS(2144), 1, - anon_sym_EQ, - STATE(1280), 1, - aux_sym_union_type_repeat1, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 5, + ACTIONS(1530), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 31, + ACTIONS(1532), 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, @@ -107894,21 +111352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [103669] = 4, - STATE(1280), 1, - aux_sym_union_type_repeat1, + [103655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1561), 6, + ACTIONS(1829), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1559), 31, + ACTIONS(1831), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -107940,38 +111395,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103718] = 5, - STATE(1293), 1, - aux_sym_dotted_name_repeat1, + [103701] = 10, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2146), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1382), 6, + ACTIONS(1530), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1380), 29, + ACTIONS(1532), 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_not, anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -107985,47 +111445,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [103769] = 8, - ACTIONS(2152), 1, - anon_sym_not, - ACTIONS(2158), 1, - anon_sym_is, - STATE(1294), 1, - aux_sym_comparison_operator_repeat1, + [103761] = 5, + ACTIONS(2195), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2155), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 4, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1409), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2149), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1543), 24, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1411), 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, @@ -108034,20 +111484,24 @@ 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, - [103826] = 3, + [103811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 7, + ACTIONS(1763), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 31, + ACTIONS(1765), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108056,16 +111510,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, @@ -108079,37 +111533,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103873] = 3, + [103857] = 8, + ACTIONS(2193), 1, + anon_sym_and, + ACTIONS(2195), 1, + anon_sym_PLUS, + ACTIONS(2209), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 7, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1299), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 31, - anon_sym_DOT, + ACTIONS(1301), 25, 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_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108123,19 +111581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103920] = 3, + [103913] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 7, + ACTIONS(1729), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1803), 31, + ACTIONS(1731), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108144,16 +111601,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, @@ -108167,37 +111624,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [103967] = 3, + [103959] = 8, + ACTIONS(1413), 1, + anon_sym_EQ, + ACTIONS(2193), 1, + anon_sym_and, + ACTIONS(2195), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 7, - anon_sym_EQ, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 4, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1699), 31, + ACTIONS(1415), 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(1435), 19, 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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108211,37 +111672,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104014] = 3, + [104015] = 7, + ACTIONS(2193), 1, + anon_sym_and, + ACTIONS(2195), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 7, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1433), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1703), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(1435), 23, 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_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -108255,29 +111719,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104061] = 3, + [104069] = 5, + ACTIONS(2195), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 7, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1591), 31, + ACTIONS(1415), 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, @@ -108286,6 +111750,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, @@ -108299,19 +111764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104108] = 3, + [104119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 7, + ACTIONS(1729), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 31, + ACTIONS(1731), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108320,16 +111784,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, @@ -108343,19 +111807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104155] = 3, + [104165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 7, + ACTIONS(1713), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 31, + ACTIONS(1715), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108364,16 +111827,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, @@ -108387,19 +111850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104202] = 3, + [104211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 7, + ACTIONS(1705), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1787), 31, + ACTIONS(1707), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108408,16 +111870,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, @@ -108431,20 +111893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104249] = 4, - STATE(1280), 1, - aux_sym_union_type_repeat1, + [104257] = 4, + ACTIONS(2150), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 6, - anon_sym_EQ, + ACTIONS(1465), 5, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1273), 31, + ACTIONS(1463), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108476,18 +111937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104298] = 3, + [104305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 6, + ACTIONS(1701), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 31, + ACTIONS(1703), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108519,72 +111980,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104344] = 14, - ACTIONS(2161), 1, + [104351] = 23, + ACTIONS(1513), 1, + anon_sym_EQ, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, + ACTIONS(2169), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(2173), 1, anon_sym_STAR_STAR, - ACTIONS(2169), 1, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2171), 1, + ACTIONS(2177), 1, anon_sym_PLUS, - ACTIONS(2173), 1, + ACTIONS(2179), 1, anon_sym_DASH, - ACTIONS(2177), 1, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - STATE(1282), 1, + ACTIONS(2191), 1, + anon_sym_CARET, + ACTIONS(2197), 1, + anon_sym_AMP, + ACTIONS(2203), 1, + anon_sym_PIPE, + STATE(1309), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2165), 2, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2181), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1324), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1322), 21, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1515), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(1321), 5, 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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1455), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [104412] = 3, + [104437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 6, + ACTIONS(1795), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1865), 31, + ACTIONS(1797), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108616,61 +112086,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104458] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1535), 6, + [104483] = 23, + ACTIONS(1449), 1, anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1533), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, anon_sym_LPAREN, + ACTIONS(2169), 1, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_in, + ACTIONS(2173), 1, anon_sym_STAR_STAR, - anon_sym_for, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, + ACTIONS(2177), 1, + anon_sym_PLUS, + ACTIONS(2179), 1, anon_sym_DASH, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2191), 1, + anon_sym_CARET, + ACTIONS(2197), 1, + anon_sym_AMP, + ACTIONS(2203), 1, + anon_sym_PIPE, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2181), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2185), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1447), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 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, - [104504] = 3, + [104569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1541), 6, + ACTIONS(1791), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 31, + ACTIONS(1793), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108702,85 +112192,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104550] = 10, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_STAR_STAR, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1372), 6, - anon_sym_EQ, - anon_sym_STAR, + [104615] = 10, + ACTIONS(2193), 1, + anon_sym_and, + ACTIONS(2195), 1, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1374), 24, - anon_sym_DOT, + ACTIONS(2209), 1, + anon_sym_or, + ACTIONS(2211), 1, anon_sym_as, + ACTIONS(2213), 1, 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, - [104610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 6, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1285), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(1291), 23, 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, @@ -108795,35 +112242,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104656] = 3, + [104675] = 6, + ACTIONS(2193), 1, + anon_sym_and, + ACTIONS(2195), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 6, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1497), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1869), 31, + ACTIONS(1499), 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, @@ -108838,18 +112288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104702] = 3, + [104727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 6, + ACTIONS(1679), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 31, + ACTIONS(1677), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108881,61 +112331,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104748] = 3, + [104773] = 22, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2177), 1, + anon_sym_PLUS, + ACTIONS(2179), 1, + anon_sym_DASH, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2191), 1, + anon_sym_CARET, + ACTIONS(2197), 1, + anon_sym_AMP, + ACTIONS(2201), 1, + anon_sym_not, + ACTIONS(2203), 1, + anon_sym_PIPE, + ACTIONS(2207), 1, + anon_sym_is, + STATE(1309), 1, + sym_argument_list, + STATE(2217), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 6, - anon_sym_EQ, + ACTIONS(2171), 2, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 31, + ACTIONS(2199), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1321), 9, 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, - [104794] = 3, + anon_sym_then, + [104857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 6, + ACTIONS(1779), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1857), 31, + ACTIONS(1781), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -108967,18 +112436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104840] = 3, + [104903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 6, + ACTIONS(1775), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1831), 31, + ACTIONS(1777), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109010,18 +112479,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104886] = 3, + [104949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 6, + ACTIONS(1771), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 31, + ACTIONS(1773), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109053,18 +112522,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104932] = 3, + [104995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 6, + ACTIONS(1767), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 31, + ACTIONS(1769), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109096,18 +112565,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [104978] = 3, + [105041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 6, + ACTIONS(1755), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 31, + ACTIONS(1757), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109139,18 +112608,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105024] = 3, + [105087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 6, + ACTIONS(1659), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 31, + ACTIONS(1657), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109182,18 +112651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105070] = 3, + [105133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 6, + ACTIONS(1853), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 31, + ACTIONS(1855), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109225,18 +112694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105116] = 3, + [105179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 6, + ACTIONS(1857), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 31, + ACTIONS(1859), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109268,18 +112737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105162] = 3, + [105225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 6, + ACTIONS(1747), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1845), 31, + ACTIONS(1749), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109311,37 +112780,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105208] = 5, - ACTIONS(2130), 1, - anon_sym_in, - ACTIONS(2132), 1, - anon_sym_not, + [105271] = 9, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(1883), 1, + sym_isMutableFlag, + ACTIONS(1885), 1, + anon_sym_QMARK_COLON, + STATE(1855), 1, + sym_dict_expr, + STATE(2222), 1, + aux_sym_comparison_operator_repeat1, + STATE(2248), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, - anon_sym_EQ, + ACTIONS(746), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(744), 27, + 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_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, @@ -109356,22 +112829,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105258] = 5, - ACTIONS(2179), 1, - anon_sym_PLUS, + [105329] = 5, + ACTIONS(2215), 1, + anon_sym_LBRACE, + STATE(1305), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 5, + ACTIONS(1605), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1444), 29, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109401,19 +112874,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105308] = 4, - ACTIONS(2144), 1, - anon_sym_EQ, + [105379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 5, + ACTIONS(1861), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 31, + ACTIONS(1863), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109445,18 +112917,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105356] = 3, + [105425] = 5, + ACTIONS(2141), 1, + anon_sym_in, + ACTIONS(2143), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 6, + ACTIONS(1605), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1841), 31, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109466,11 +112942,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, @@ -109488,32 +112962,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105402] = 5, - ACTIONS(2179), 1, - anon_sym_PLUS, + [105475] = 10, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 5, + ACTIONS(1427), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 29, + ACTIONS(1425), 24, 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, @@ -109532,36 +113012,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [105452] = 3, + [105535] = 5, + ACTIONS(2195), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1531), 6, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1417), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1529), 31, + ACTIONS(1419), 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, @@ -109576,18 +113057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105498] = 3, + [105585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 6, + ACTIONS(1873), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 31, + ACTIONS(1875), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109619,18 +113100,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105544] = 3, + [105631] = 23, + ACTIONS(1509), 1, + anon_sym_EQ, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2173), 1, + anon_sym_STAR_STAR, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2177), 1, + anon_sym_PLUS, + ACTIONS(2179), 1, + anon_sym_DASH, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2191), 1, + anon_sym_CARET, + ACTIONS(2197), 1, + anon_sym_AMP, + ACTIONS(2203), 1, + anon_sym_PIPE, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2181), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2185), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1511), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_then, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [105717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1382), 6, + ACTIONS(1739), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1380), 31, + ACTIONS(1741), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109662,18 +113206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105590] = 3, + [105763] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 6, + ACTIONS(1605), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 31, + ACTIONS(1607), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109705,18 +113249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105636] = 3, + [105809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 6, + ACTIONS(1319), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 31, + ACTIONS(1321), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109748,80 +113292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105682] = 22, - ACTIONS(1284), 1, - anon_sym_EQ, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_STAR_STAR, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2171), 1, - anon_sym_PLUS, - ACTIONS(2173), 1, - anon_sym_DASH, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2183), 1, - anon_sym_not, - ACTIONS(2185), 1, - anon_sym_PIPE, - ACTIONS(2187), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_CARET, - ACTIONS(2195), 1, - anon_sym_is, - STATE(1282), 1, - sym_argument_list, - STATE(2189), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2175), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2181), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 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, - [105766] = 3, + [105855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 6, + ACTIONS(1663), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 31, + ACTIONS(1661), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109853,18 +113335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105812] = 3, + [105901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 6, + ACTIONS(1669), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 31, + ACTIONS(1671), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109896,18 +113378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105858] = 3, + [105947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 6, + ACTIONS(1665), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 31, + ACTIONS(1667), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -109939,39 +113421,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105904] = 7, - ACTIONS(2179), 1, - anon_sym_PLUS, - ACTIONS(2197), 1, - anon_sym_and, + [105993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1463), 5, + ACTIONS(1727), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1465), 23, + ACTIONS(1725), 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, @@ -109986,18 +113464,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [105958] = 3, + [106039] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 6, + ACTIONS(1597), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 31, + ACTIONS(1599), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110029,18 +113507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106004] = 3, + [106085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 6, + ACTIONS(1723), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 31, + ACTIONS(1721), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110072,18 +113550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106050] = 3, + [106131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 6, + ACTIONS(1697), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1807), 31, + ACTIONS(1699), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110115,18 +113593,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106096] = 3, + [106177] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 6, + ACTIONS(1605), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 31, + ACTIONS(1607), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110158,22 +113636,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106142] = 5, - ACTIONS(2199), 1, - anon_sym_in, - ACTIONS(2201), 1, - anon_sym_not, + [106223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1865), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1867), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110183,9 +113657,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, @@ -110203,18 +113679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106192] = 3, + [106269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 6, + ACTIONS(1621), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 31, + ACTIONS(1623), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110246,18 +113722,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106238] = 3, + [106315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 6, + ACTIONS(1675), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 31, + ACTIONS(1673), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110289,18 +113765,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106284] = 3, + [106361] = 5, + ACTIONS(2187), 1, + anon_sym_in, + ACTIONS(2217), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 6, + ACTIONS(1605), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 31, + ACTIONS(1607), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110310,11 +113790,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, @@ -110332,18 +113810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106330] = 3, + [106411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 6, + ACTIONS(1695), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 31, + ACTIONS(1693), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110375,35 +113853,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106376] = 3, + [106457] = 10, + ACTIONS(2219), 1, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_LBRACK, + STATE(1530), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 6, - anon_sym_EQ, + ACTIONS(1427), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1807), 31, + ACTIONS(1425), 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_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, @@ -110417,80 +113902,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [106422] = 3, + [106516] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2229), 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_SLASH, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2231), 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, + [106561] = 15, + ACTIONS(2219), 1, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2239), 1, + anon_sym_CARET, + STATE(1530), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1803), 31, + ACTIONS(2233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 18, 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_DASH, - anon_sym_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, - [106468] = 3, + [106630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1525), 6, + ACTIONS(2243), 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(2245), 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, + [106675] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2249), 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(2247), 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, + [106720] = 4, + ACTIONS(2251), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1534), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1523), 31, + ACTIONS(1536), 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_DASH, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -110504,22 +114125,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106514] = 5, - ACTIONS(2179), 1, - anon_sym_PLUS, + [106767] = 5, + ACTIONS(2253), 1, + anon_sym_PIPE, + STATE(1416), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1426), 5, + ACTIONS(1517), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1424), 29, + ACTIONS(1519), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -110538,7 +114159,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, @@ -110549,35 +114169,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106564] = 3, + [106816] = 9, + ACTIONS(1983), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_QMARK_COLON, + ACTIONS(2256), 1, + sym_isMutableFlag, + STATE(1313), 1, + sym_dict_expr, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, + STATE(2239), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 6, - anon_sym_EQ, + ACTIONS(746), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 31, + ACTIONS(744), 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_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, @@ -110592,90 +114217,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106610] = 23, - ACTIONS(1404), 1, - anon_sym_EQ, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2161), 1, + [106873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2260), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2163), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_STAR_STAR, - ACTIONS(2169), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2171), 1, anon_sym_PLUS, - ACTIONS(2173), 1, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2177), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(2258), 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, + [106918] = 20, + ACTIONS(2219), 1, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2239), 1, + anon_sym_CARET, + ACTIONS(2264), 1, + anon_sym_not, + ACTIONS(2266), 1, anon_sym_PIPE, - ACTIONS(2187), 1, + ACTIONS(2268), 1, anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, + ACTIONS(2272), 1, + anon_sym_is, + STATE(1528), 1, aux_sym_comparison_operator_repeat1, + STATE(1530), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2165), 2, + ACTIONS(2233), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1402), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1312), 5, + ACTIONS(2241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2270), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2262), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, + ACTIONS(1321), 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, - [106696] = 3, + [106997] = 5, + ACTIONS(2274), 1, + anon_sym_PIPE, + STATE(1420), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 6, + ACTIONS(1517), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1787), 31, + ACTIONS(1519), 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, @@ -110683,11 +114348,10 @@ 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, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -110698,35 +114362,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106742] = 3, + [107046] = 8, + ACTIONS(2277), 1, + anon_sym_and, + ACTIONS(2279), 1, + anon_sym_or, + ACTIONS(2281), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 6, - anon_sym_EQ, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1299), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 31, - anon_sym_DOT, + ACTIONS(1301), 25, 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_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -110741,27 +114409,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106788] = 3, + [107101] = 5, + ACTIONS(2281), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 6, - anon_sym_EQ, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1779), 31, + ACTIONS(1415), 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, @@ -110769,7 +114439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -110784,35 +114453,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106834] = 3, + [107150] = 10, + ACTIONS(2277), 1, + anon_sym_and, + ACTIONS(2279), 1, + anon_sym_or, + ACTIONS(2281), 1, + anon_sym_PLUS, + ACTIONS(2283), 1, + anon_sym_as, + ACTIONS(2285), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 6, - anon_sym_EQ, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1285), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1775), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1291), 23, 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_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -110827,35 +114502,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106880] = 3, + [107209] = 9, + ACTIONS(1983), 1, + anon_sym_LBRACE, + ACTIONS(1987), 1, + anon_sym_QMARK_COLON, + ACTIONS(2256), 1, + sym_isMutableFlag, + STATE(1313), 1, + sym_dict_expr, + STATE(2049), 1, + aux_sym_comparison_operator_repeat1, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 6, - anon_sym_EQ, + ACTIONS(746), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 31, + ACTIONS(744), 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_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, @@ -110870,38 +114550,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106926] = 6, - ACTIONS(2179), 1, + [107266] = 5, + ACTIONS(2281), 1, anon_sym_PLUS, - ACTIONS(2197), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1442), 5, - anon_sym_EQ, + ACTIONS(1417), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 28, + ACTIONS(1419), 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, @@ -110916,35 +114594,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [106978] = 3, + [107315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 6, + ACTIONS(2229), 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(2231), 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, + [107360] = 4, + STATE(1416), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1445), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 31, + ACTIONS(1443), 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, @@ -110959,35 +114679,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107024] = 3, + [107407] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2287), 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(2289), 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, + [107452] = 4, + STATE(1427), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 6, + ACTIONS(1542), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 31, + ACTIONS(1544), 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, @@ -111002,27 +114764,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107070] = 3, + [107499] = 20, + ACTIONS(2219), 1, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2239), 1, + anon_sym_CARET, + ACTIONS(2264), 1, + anon_sym_not, + ACTIONS(2266), 1, + anon_sym_PIPE, + ACTIONS(2268), 1, + anon_sym_AMP, + ACTIONS(2272), 1, + anon_sym_is, + STATE(1530), 1, + sym_argument_list, + STATE(2221), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 6, - anon_sym_EQ, + ACTIONS(2233), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2235), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2270), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2262), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1321), 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, + [107578] = 5, + ACTIONS(2291), 1, + anon_sym_LBRACE, + STATE(1782), 1, + sym_dictionary, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 31, + ACTIONS(1607), 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_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -111030,7 +114852,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, @@ -111045,27 +114867,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107116] = 3, + [107627] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 6, - anon_sym_EQ, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1546), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 31, + ACTIONS(1548), 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_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -111073,7 +114895,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, @@ -111088,35 +114910,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107162] = 3, + [107674] = 4, + STATE(1427), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1585), 6, + ACTIONS(1550), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1583), 31, + ACTIONS(1552), 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, @@ -111131,27 +114953,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107208] = 3, + [107721] = 4, + STATE(1454), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 6, + ACTIONS(1542), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1587), 31, + ACTIONS(1544), 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_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -111159,7 +114981,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, @@ -111174,27 +114996,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107254] = 3, + [107768] = 4, + STATE(1454), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 6, + ACTIONS(1550), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 31, + ACTIONS(1552), 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_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -111202,7 +115024,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, @@ -111217,35 +115039,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107300] = 3, + [107815] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2295), 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(2293), 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, + [107860] = 4, + STATE(2216), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 6, + ACTIONS(1605), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1591), 31, + ACTIONS(1607), 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, @@ -111260,35 +115124,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107346] = 3, + [107907] = 5, + ACTIONS(2297), 1, + anon_sym_EQ, + STATE(1427), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 6, - anon_sym_EQ, + ACTIONS(1465), 5, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1703), 31, + ACTIONS(1463), 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, @@ -111303,27 +115168,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107392] = 3, + [107956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 6, + ACTIONS(2249), 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(2247), 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, + [108001] = 4, + ACTIONS(2299), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1501), 6, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1699), 31, + ACTIONS(1503), 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, @@ -111331,8 +115239,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -111346,27 +115253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107438] = 3, + [108048] = 4, + STATE(1454), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 6, + ACTIONS(1501), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 31, + ACTIONS(1503), 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_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -111374,7 +115281,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, @@ -111389,37 +115296,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107484] = 5, - ACTIONS(2199), 1, - anon_sym_in, - ACTIONS(2203), 1, - anon_sym_not, + [108095] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, - anon_sym_EQ, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1556), 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_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, @@ -111434,27 +115339,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107534] = 3, + [108142] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 6, - anon_sym_EQ, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1691), 31, + ACTIONS(1556), 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_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -111462,7 +115367,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, @@ -111477,35 +115382,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107580] = 3, + [108189] = 4, + STATE(1453), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1619), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1617), 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, @@ -111520,35 +115425,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107626] = 3, + [108236] = 6, + ACTIONS(2277), 1, + anon_sym_and, + ACTIONS(2281), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 6, - anon_sym_EQ, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1497), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 31, + ACTIONS(1499), 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_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_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111563,27 +115470,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107672] = 3, + [108287] = 5, + ACTIONS(2281), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 6, - anon_sym_EQ, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1409), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 31, + ACTIONS(1411), 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, @@ -111591,7 +115500,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS_EQ, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -111606,35 +115514,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107718] = 3, + [108336] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2287), 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(2289), 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, + [108381] = 4, + STATE(1427), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 6, + ACTIONS(1655), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1328), 31, + ACTIONS(1653), 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, @@ -111649,27 +115599,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107764] = 3, + [108428] = 4, + STATE(1462), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1469), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 31, + ACTIONS(1471), 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_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -111677,7 +115627,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, @@ -111692,40 +115642,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107810] = 8, - ACTIONS(1442), 1, - anon_sym_EQ, - ACTIONS(2179), 1, - anon_sym_PLUS, - ACTIONS(2197), 1, - anon_sym_and, + [108475] = 4, + STATE(1454), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + sym_line_continuation, + ACTIONS(1517), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 9, + ACTIONS(1519), 30, 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(1465), 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, @@ -111740,36 +115685,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107866] = 9, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(1875), 1, - sym_isMutableFlag, - ACTIONS(1877), 1, - anon_sym_QMARK_COLON, - STATE(1833), 1, - sym_dict_expr, - STATE(2196), 1, - aux_sym_comparison_operator_repeat1, - STATE(2223), 1, - aux_sym_dotted_name_repeat1, + [108522] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, + STATE(1475), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1439), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 27, - sym__newline, + ACTIONS(1437), 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, @@ -111789,27 +115728,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107924] = 3, + [108569] = 4, + ACTIONS(2301), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 6, + ACTIONS(1524), 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(1526), 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, @@ -111817,8 +115757,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -111832,24 +115771,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [107970] = 6, - ACTIONS(2179), 1, - anon_sym_PLUS, - ACTIONS(2197), 1, - anon_sym_and, + [108616] = 8, + ACTIONS(2306), 1, + anon_sym_not, + ACTIONS(2312), 1, + anon_sym_is, + STATE(1453), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1253), 5, + ACTIONS(2309), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1625), 4, anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1251), 28, + ACTIONS(2303), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 22, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -111857,10 +115803,9 @@ 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_EQ, anon_sym_then, @@ -111872,33 +115817,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, - [108022] = 3, + [108671] = 4, + STATE(1420), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 6, + ACTIONS(1445), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1787), 31, + ACTIONS(1443), 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_RBRACK, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -111906,7 +115846,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, @@ -111921,38 +115861,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108068] = 10, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_STAR_STAR, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, + [108718] = 4, + STATE(1453), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 6, + ACTIONS(1619), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 24, + ACTIONS(1617), 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, @@ -111971,44 +115903,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [108128] = 10, - ACTIONS(2161), 1, + anon_sym_QMARK_LBRACK, + [108765] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2295), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2163), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_STAR_STAR, - ACTIONS(2169), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2293), 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, + [108810] = 4, + ACTIONS(2315), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 6, + ACTIONS(1524), 7, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 24, + ACTIONS(1526), 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, + 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, @@ -112021,43 +115988,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [108188] = 10, - ACTIONS(2179), 1, + anon_sym_QMARK_LBRACK, + [108857] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2260), 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, - ACTIONS(2197), 1, - anon_sym_and, - ACTIONS(2205), 1, - anon_sym_as, - ACTIONS(2207), 1, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2258), 24, + anon_sym_import, + anon_sym_DOT, + anon_sym_assert, anon_sym_if, - ACTIONS(2209), 1, - anon_sym_or, + 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, + [108902] = 4, + ACTIONS(2317), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1493), 5, + ACTIONS(1534), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 23, + ACTIONS(1536), 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_PLUS_EQ, - anon_sym_then, - anon_sym_DASH, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -112071,40 +116074,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108248] = 8, - ACTIONS(2179), 1, - anon_sym_PLUS, - ACTIONS(2197), 1, - anon_sym_and, - ACTIONS(2209), 1, - anon_sym_or, + [108949] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1487), 5, - anon_sym_EQ, + ACTIONS(1562), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 25, + ACTIONS(1560), 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_PLUS_EQ, - anon_sym_then, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -112119,110 +116117,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108304] = 22, - ACTIONS(1284), 1, - anon_sym_EQ, - ACTIONS(2161), 1, + [108996] = 21, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2219), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, + ACTIONS(2221), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - ACTIONS(2169), 1, + ACTIONS(2225), 1, anon_sym_QMARK_DOT, - ACTIONS(2171), 1, - anon_sym_PLUS, - ACTIONS(2173), 1, - anon_sym_DASH, - ACTIONS(2177), 1, + ACTIONS(2227), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2183), 1, - anon_sym_not, - ACTIONS(2185), 1, + ACTIONS(2239), 1, + anon_sym_CARET, + ACTIONS(2266), 1, anon_sym_PIPE, - ACTIONS(2187), 1, + ACTIONS(2268), 1, anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_CARET, - ACTIONS(2195), 1, - anon_sym_is, - STATE(1282), 1, + STATE(1530), 1, sym_argument_list, - STATE(1404), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2165), 2, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2233), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2191), 2, + ACTIONS(2241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2181), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 9, + ACTIONS(1511), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + ACTIONS(1321), 5, 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, - [108388] = 12, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_STAR_STAR, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(1455), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [109077] = 4, + STATE(1468), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2165), 2, + ACTIONS(1459), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1324), 4, - anon_sym_EQ, - anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 22, + ACTIONS(1461), 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, anon_sym_AMP, anon_sym_CARET, @@ -112233,313 +116219,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [108452] = 17, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_STAR_STAR, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2171), 1, - anon_sym_PLUS, - ACTIONS(2173), 1, - anon_sym_DASH, - ACTIONS(2177), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2187), 1, - anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, + [109124] = 4, + STATE(1467), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2165), 2, + ACTIONS(1605), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2175), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1324), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 17, + ACTIONS(1607), 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_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [108526] = 23, - ACTIONS(1320), 1, - anon_sym_EQ, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_STAR_STAR, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2171), 1, - anon_sym_PLUS, - ACTIONS(2173), 1, anon_sym_DASH, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2185), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2187), 1, anon_sym_AMP, - ACTIONS(2189), 1, anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2175), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2191), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1318), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1312), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [108612] = 23, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(2038), 1, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [109171] = 21, + ACTIONS(2066), 1, anon_sym_not, - ACTIONS(2054), 1, + ACTIONS(2070), 1, anon_sym_is, - ACTIONS(2161), 1, + ACTIONS(2219), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, + ACTIONS(2221), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - ACTIONS(2169), 1, + ACTIONS(2225), 1, anon_sym_QMARK_DOT, - ACTIONS(2171), 1, - anon_sym_PLUS, - ACTIONS(2173), 1, - anon_sym_DASH, - ACTIONS(2177), 1, + ACTIONS(2227), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2185), 1, + ACTIONS(2239), 1, + anon_sym_CARET, + ACTIONS(2266), 1, anon_sym_PIPE, - ACTIONS(2187), 1, + ACTIONS(2268), 1, anon_sym_AMP, - ACTIONS(2189), 1, - anon_sym_CARET, - STATE(1282), 1, + STATE(1530), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2165), 2, + ACTIONS(2233), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1280), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_then, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [108698] = 16, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2167), 1, - anon_sym_STAR_STAR, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2171), 1, + ACTIONS(2235), 2, anon_sym_PLUS, - ACTIONS(2173), 1, anon_sym_DASH, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2189), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2165), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2237), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2191), 2, + ACTIONS(2241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1324), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1322), 18, + ACTIONS(1447), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + ACTIONS(1321), 5, 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_PIPE, - anon_sym_AMP, + ACTIONS(1455), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + [109252] = 21, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, anon_sym_is, - [108770] = 15, - ACTIONS(2161), 1, + ACTIONS(2219), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, + ACTIONS(2221), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - ACTIONS(2169), 1, + ACTIONS(2225), 1, anon_sym_QMARK_DOT, - ACTIONS(2171), 1, - anon_sym_PLUS, - ACTIONS(2173), 1, - anon_sym_DASH, - ACTIONS(2177), 1, + ACTIONS(2227), 1, anon_sym_QMARK_LBRACK, - STATE(1282), 1, + ACTIONS(2239), 1, + anon_sym_CARET, + ACTIONS(2266), 1, + anon_sym_PIPE, + ACTIONS(2268), 1, + anon_sym_AMP, + STATE(1530), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2165), 2, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2233), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2191), 2, + ACTIONS(2241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1324), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1322), 19, + ACTIONS(1515), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + ACTIONS(1321), 5, 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_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1455), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [108840] = 4, + [109333] = 5, + ACTIONS(2319), 1, + anon_sym_EQ, + STATE(1454), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1271), 4, + ACTIONS(1465), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1269), 30, + ACTIONS(1463), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112570,21 +116427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108887] = 4, - ACTIONS(2211), 1, - anon_sym_DASH_GT, + [109382] = 4, + STATE(1453), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 7, + ACTIONS(1619), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 28, + ACTIONS(1617), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112600,6 +116456,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, @@ -112613,21 +116470,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108934] = 4, - ACTIONS(2213), 1, - anon_sym_DASH_GT, + [109429] = 5, + STATE(1468), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 6, + ACTIONS(2321), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1475), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1245), 29, - anon_sym_DOT, + ACTIONS(1473), 28, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -112638,11 +116496,11 @@ 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, anon_sym_PIPE, @@ -112656,37 +116514,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [108981] = 5, - ACTIONS(2215), 1, - anon_sym_EQ, - STATE(1417), 1, - aux_sym_union_type_repeat1, + [109478] = 4, + ACTIONS(2324), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, + ACTIONS(1501), 7, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 30, + ACTIONS(1503), 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_PLUS, - anon_sym_DASH, + anon_sym_PLUS_EQ, + anon_sym_then, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -112700,35 +116557,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109030] = 4, + [109525] = 4, + STATE(1453), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 4, + ACTIONS(1619), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1225), 30, + ACTIONS(1617), 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, @@ -112743,20 +116600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109077] = 4, - STATE(1409), 1, - aux_sym_comparison_operator_repeat1, + [109572] = 4, + STATE(1427), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1501), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1503), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -112786,29 +116643,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109124] = 7, - ACTIONS(2217), 1, + [109619] = 7, + ACTIONS(2277), 1, anon_sym_and, - ACTIONS(2219), 1, + ACTIONS(2281), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + ACTIONS(1433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 5, + ACTIONS(1415), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_or, - ACTIONS(1465), 23, + ACTIONS(1435), 23, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, @@ -112832,40 +116689,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109177] = 9, - ACTIONS(1979), 1, - anon_sym_LBRACE, - ACTIONS(1983), 1, - anon_sym_QMARK_COLON, - ACTIONS(2221), 1, - sym_isMutableFlag, - STATE(1295), 1, - sym_dict_expr, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, - STATE(2214), 1, - aux_sym_comparison_operator_repeat1, + [109672] = 7, + ACTIONS(2277), 1, + anon_sym_and, + ACTIONS(2281), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, + STATE(1451), 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(694), 26, + ACTIONS(1415), 9, 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(1435), 19, 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, @@ -112880,13 +116735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109234] = 3, + [109725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2223), 12, + ACTIONS(2243), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -112897,7 +116752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2225), 24, + ACTIONS(2245), 24, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -112922,22 +116777,22 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [109279] = 5, - ACTIONS(2227), 1, - anon_sym_PIPE, - STATE(1403), 1, - aux_sym_union_type_repeat1, + [109770] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 5, - anon_sym_EQ, + ACTIONS(2326), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1475), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1489), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1273), 29, - anon_sym_DOT, + ACTIONS(1487), 28, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -112948,7 +116803,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, @@ -112956,6 +116810,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, @@ -112966,124 +116821,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109328] = 4, - STATE(1463), 1, + [109819] = 16, + ACTIONS(2219), 1, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2239), 1, + anon_sym_CARET, + ACTIONS(2268), 1, + anon_sym_AMP, + STATE(1530), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 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(2233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2235), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2237), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2241), 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, - [109375] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1428), 30, + ACTIONS(1532), 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_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, + [109890] = 12, + ACTIONS(2219), 1, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, anon_sym_QMARK_LBRACK, - [109422] = 4, - ACTIONS(2230), 1, - anon_sym_DASH_GT, + STATE(1530), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 29, + ACTIONS(2233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2237), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 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_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -113094,38 +116927,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [109469] = 6, - ACTIONS(2217), 1, - anon_sym_and, + [109953] = 10, ACTIONS(2219), 1, - anon_sym_PLUS, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_LBRACK, + STATE(1530), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1253), 4, + ACTIONS(1530), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 28, + ACTIONS(1532), 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, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -113139,80 +116976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [109520] = 20, - ACTIONS(2232), 1, - anon_sym_LPAREN, - ACTIONS(2234), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_STAR_STAR, - ACTIONS(2242), 1, - anon_sym_QMARK_DOT, - ACTIONS(2244), 1, - anon_sym_not, - ACTIONS(2250), 1, - anon_sym_PIPE, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_CARET, - ACTIONS(2260), 1, - anon_sym_is, - ACTIONS(2262), 1, - anon_sym_QMARK_LBRACK, - STATE(1764), 1, - sym_argument_list, - STATE(2192), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2238), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2248), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2258), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2236), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 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, - [109599] = 4, - STATE(1463), 1, - aux_sym_comparison_operator_repeat1, + [110012] = 4, + STATE(1427), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 6, + ACTIONS(1517), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 29, + ACTIONS(1519), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113242,19 +117019,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109646] = 4, - STATE(1417), 1, - aux_sym_union_type_repeat1, + [110059] = 6, + ACTIONS(2277), 1, + anon_sym_and, + ACTIONS(2281), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 5, - anon_sym_EQ, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1273), 30, + ACTIONS(1415), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113268,9 +117049,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, @@ -113285,77 +117064,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [109693] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2264), 12, - sym_string_start, - ts_builtin_sym_end, + [110110] = 10, + ACTIONS(2219), 1, anon_sym_LPAREN, + ACTIONS(2221), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2266), 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, - [109738] = 4, - STATE(1463), 1, + ACTIONS(2227), 1, + anon_sym_QMARK_LBRACK, + STATE(1530), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 6, - anon_sym_EQ, + ACTIONS(1530), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 29, + ACTIONS(1532), 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, @@ -113369,39 +117113,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [110169] = 13, + ACTIONS(2219), 1, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, anon_sym_QMARK_LBRACK, - [109785] = 4, - STATE(1463), 1, + STATE(1530), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 29, + ACTIONS(2233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 21, 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_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -113412,82 +117165,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [110234] = 14, + ACTIONS(2219), 1, + anon_sym_LPAREN, + ACTIONS(2221), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2225), 1, + anon_sym_QMARK_DOT, + ACTIONS(2227), 1, anon_sym_QMARK_LBRACK, - [109832] = 4, + STATE(1530), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1225), 30, + ACTIONS(2233), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2235), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2237), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2241), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 19, 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, - [109879] = 6, - ACTIONS(2217), 1, + [110301] = 7, + ACTIONS(1435), 1, + anon_sym_LF, + ACTIONS(2329), 1, anon_sym_and, - ACTIONS(2219), 1, + ACTIONS(2331), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, + STATE(1567), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1440), 28, + ACTIONS(1413), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1433), 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_or, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -113495,101 +117255,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, - [109930] = 20, - ACTIONS(2232), 1, + [110353] = 5, + ACTIONS(1463), 1, + anon_sym_LF, + ACTIONS(2333), 1, + anon_sym_EQ, + STATE(1561), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1465), 32, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2234), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2242), 1, anon_sym_QMARK_DOT, - ACTIONS(2244), 1, anon_sym_not, - ACTIONS(2250), 1, - anon_sym_PIPE, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_CARET, - ACTIONS(2260), 1, - anon_sym_is, - ACTIONS(2262), 1, - anon_sym_QMARK_LBRACK, - STATE(1549), 1, - aux_sym_comparison_operator_repeat1, - STATE(1764), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2238), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2246), 2, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2248), 2, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2256), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2258), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(2236), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [110401] = 8, + ACTIONS(2335), 1, anon_sym_and, + ACTIONS(2337), 1, anon_sym_or, - [110009] = 4, - STATE(1403), 1, - aux_sym_union_type_repeat1, + ACTIONS(2339), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 5, - anon_sym_EQ, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1299), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 30, - anon_sym_DOT, + ACTIONS(1301), 23, 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, @@ -113603,36 +117352,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110056] = 4, - STATE(1417), 1, - aux_sym_union_type_repeat1, + [110455] = 7, + ACTIONS(2335), 1, + anon_sym_and, + ACTIONS(2339), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 5, - anon_sym_EQ, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1433), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 30, + ACTIONS(1415), 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(1435), 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, @@ -113646,40 +117397,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110103] = 8, - ACTIONS(2217), 1, - anon_sym_and, - ACTIONS(2219), 1, - anon_sym_PLUS, - ACTIONS(2268), 1, - anon_sym_or, - ACTIONS(3), 2, + [110507] = 5, + ACTIONS(1473), 1, + anon_sym_LF, + STATE(1488), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(2341), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1485), 25, + ACTIONS(1475), 31, 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_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, @@ -113687,49 +117432,49 @@ 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, - [110158] = 10, - ACTIONS(2232), 1, - anon_sym_LPAREN, - ACTIONS(2234), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_STAR_STAR, - ACTIONS(2242), 1, - anon_sym_QMARK_DOT, - ACTIONS(2262), 1, - anon_sym_QMARK_LBRACK, - STATE(1764), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [110555] = 10, + ACTIONS(2335), 1, + anon_sym_and, + ACTIONS(2337), 1, + anon_sym_or, + ACTIONS(2339), 1, + anon_sym_PLUS, + ACTIONS(2344), 1, + anon_sym_as, + ACTIONS(2346), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1372), 4, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1285), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1374), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1291), 21, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + 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, @@ -113742,78 +117487,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [110217] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2270), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_QMARK_LBRACK, + [110613] = 5, + ACTIONS(2348), 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(2272), 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, - [110262] = 4, - ACTIONS(2274), 1, - anon_sym_DASH_GT, + STATE(1889), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, - anon_sym_EQ, + ACTIONS(1605), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 29, + ACTIONS(1607), 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, anon_sym_or, anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -113827,19 +117531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110309] = 4, - STATE(1417), 1, - aux_sym_union_type_repeat1, + [110661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 5, - anon_sym_EQ, + ACTIONS(1817), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1414), 30, + ACTIONS(1819), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -113848,6 +117549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -113870,36 +117572,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110356] = 4, - STATE(1417), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [110705] = 6, + ACTIONS(1415), 1, + anon_sym_LF, + ACTIONS(2329), 1, + anon_sym_and, + ACTIONS(2331), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1243), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1241), 30, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 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_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, @@ -113907,84 +117608,103 @@ 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, - [110403] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2278), 12, - sym__dedent, - sym_string_start, + [110755] = 22, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, anon_sym_LPAREN, + ACTIONS(2169), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + ACTIONS(2354), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2356), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2276), 24, - anon_sym_import, + ACTIONS(2360), 1, + anon_sym_PIPE, + ACTIONS(2362), 1, + anon_sym_AMP, + ACTIONS(2364), 1, + anon_sym_CARET, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2350), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2358), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2366), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1447), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + ACTIONS(1321), 5, 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, - [110448] = 4, - STATE(1439), 1, - aux_sym_dotted_name_repeat1, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [110837] = 4, + STATE(1625), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1461), 5, + ACTIONS(1501), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1459), 30, + ACTIONS(1503), 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, @@ -113998,37 +117718,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110495] = 5, - ACTIONS(2219), 1, - anon_sym_PLUS, + [110883] = 4, + ACTIONS(2368), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1426), 4, + ACTIONS(1524), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1424), 29, + ACTIONS(1526), 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_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -114042,36 +117760,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110544] = 5, - ACTIONS(2219), 1, + [110929] = 7, + ACTIONS(2370), 1, + anon_sym_and, + ACTIONS(2372), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, + ACTIONS(1433), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 29, + ACTIONS(1415), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1435), 22, + sym__newline, 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_PERCENT, anon_sym_SLASH_SLASH, @@ -114086,21 +117805,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110593] = 5, - ACTIONS(2219), 1, - anon_sym_PLUS, + [110981] = 8, + ACTIONS(2377), 1, + anon_sym_not, + ACTIONS(2383), 1, + anon_sym_is, + STATE(1497), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 4, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2380), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1444), 29, + ACTIONS(2374), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114109,13 +117836,12 @@ 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, @@ -114124,36 +117850,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, - [110642] = 4, + [111035] = 4, + STATE(1517), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1444), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1376), 4, + ACTIONS(1517), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1378), 30, + ACTIONS(1519), 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, @@ -114173,32 +117893,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110689] = 10, - ACTIONS(2217), 1, - anon_sym_and, - ACTIONS(2219), 1, - anon_sym_PLUS, - ACTIONS(2268), 1, - anon_sym_or, - ACTIONS(2280), 1, - anon_sym_as, - ACTIONS(2282), 1, - anon_sym_if, + [111081] = 4, + STATE(1454), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1493), 4, + ACTIONS(1655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 23, + ACTIONS(1653), 30, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_COLON, anon_sym_LPAREN, @@ -114207,7 +117916,11 @@ 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, @@ -114222,210 +117935,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [110748] = 21, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2232), 1, + [111127] = 19, + ACTIONS(1321), 1, + anon_sym_LF, + ACTIONS(2386), 1, anon_sym_LPAREN, - ACTIONS(2234), 1, + ACTIONS(2388), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(2394), 1, anon_sym_STAR_STAR, - ACTIONS(2242), 1, + ACTIONS(2396), 1, anon_sym_QMARK_DOT, - ACTIONS(2250), 1, + ACTIONS(2398), 1, + anon_sym_not, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2252), 1, + ACTIONS(2404), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2406), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2410), 1, + anon_sym_is, + ACTIONS(2412), 1, anon_sym_QMARK_LBRACK, - STATE(1764), 1, + STATE(1719), 1, sym_argument_list, - STATE(2215), 1, + STATE(2229), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2238), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2246), 2, + ACTIONS(2400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2248), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2256), 2, + ACTIONS(2408), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1280), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [110829] = 21, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2232), 1, - anon_sym_LPAREN, - ACTIONS(2234), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_STAR_STAR, - ACTIONS(2242), 1, - anon_sym_QMARK_DOT, - ACTIONS(2250), 1, - anon_sym_PIPE, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_CARET, - ACTIONS(2262), 1, - anon_sym_QMARK_LBRACK, - STATE(1764), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2238), 2, + ACTIONS(2392), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2248), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1318), 4, + ACTIONS(1319), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1312), 5, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(2390), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [110910] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2286), 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(2284), 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, - [110955] = 13, - ACTIONS(2232), 1, + anon_sym_GT, + [111203] = 10, + ACTIONS(2414), 1, anon_sym_LPAREN, - ACTIONS(2234), 1, + ACTIONS(2416), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2242), 1, + ACTIONS(2420), 1, anon_sym_QMARK_DOT, - ACTIONS(2262), 1, + ACTIONS(2422), 1, anon_sym_QMARK_LBRACK, - STATE(1764), 1, + STATE(1672), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2238), 2, + ACTIONS(1427), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2248), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1425), 24, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, anon_sym_in, - anon_sym_for, 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, @@ -114436,168 +118040,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111020] = 3, - ACTIONS(3), 2, + [111261] = 5, + ACTIONS(1487), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2278), 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(2276), 24, - anon_sym_import, + ACTIONS(2424), 2, 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, - [111065] = 14, - ACTIONS(2232), 1, - anon_sym_LPAREN, - ACTIONS(2234), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_STAR_STAR, - ACTIONS(2242), 1, anon_sym_QMARK_DOT, - ACTIONS(2262), 1, - anon_sym_QMARK_LBRACK, - STATE(1764), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2238), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2248), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 19, - anon_sym_DOT, + STATE(1502), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1489), 30, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_in, - anon_sym_for, + 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_GT, anon_sym_is, - [111132] = 15, - ACTIONS(2232), 1, + anon_sym_QMARK_LBRACK, + [111309] = 10, + ACTIONS(1532), 1, + anon_sym_LF, + ACTIONS(2386), 1, anon_sym_LPAREN, - ACTIONS(2234), 1, + ACTIONS(2388), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(2394), 1, anon_sym_STAR_STAR, - ACTIONS(2242), 1, + ACTIONS(2396), 1, anon_sym_QMARK_DOT, - ACTIONS(2254), 1, - anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2412), 1, anon_sym_QMARK_LBRACK, - STATE(1764), 1, + STATE(1719), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2238), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2248), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 18, + ACTIONS(1530), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_in, - anon_sym_for, + 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, 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, - [111201] = 4, - STATE(1455), 1, - aux_sym_dotted_name_repeat1, + [111367] = 4, + ACTIONS(2319), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 5, - anon_sym_EQ, + ACTIONS(1465), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 30, + ACTIONS(1463), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -114628,102 +118173,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111248] = 16, - ACTIONS(2232), 1, - anon_sym_LPAREN, - ACTIONS(2234), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_STAR_STAR, - ACTIONS(2242), 1, - anon_sym_QMARK_DOT, - ACTIONS(2252), 1, - anon_sym_AMP, - ACTIONS(2254), 1, - anon_sym_CARET, - ACTIONS(2262), 1, - anon_sym_QMARK_LBRACK, - STATE(1764), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [111413] = 5, + ACTIONS(2427), 1, + anon_sym_PIPE, + STATE(1505), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2238), 2, + ACTIONS(1517), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2248), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2256), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1519), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_in, - anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PLUS, + 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111319] = 12, - ACTIONS(2232), 1, - anon_sym_LPAREN, - ACTIONS(2234), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_STAR_STAR, - ACTIONS(2242), 1, - anon_sym_QMARK_DOT, - ACTIONS(2262), 1, anon_sym_QMARK_LBRACK, - STATE(1764), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [111461] = 7, + ACTIONS(2335), 1, + anon_sym_and, + ACTIONS(2339), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2238), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2248), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 23, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1433), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1435), 21, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, + 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, @@ -114734,43 +118260,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111382] = 10, - ACTIONS(2232), 1, + anon_sym_QMARK_LBRACK, + [111513] = 10, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2234), 1, + ACTIONS(2169), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_STAR_STAR, - ACTIONS(2242), 1, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2262), 1, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - STATE(1764), 1, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + STATE(1309), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 4, + ACTIONS(1530), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 25, + ACTIONS(1532), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, 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, @@ -114783,43 +118309,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111441] = 10, - ACTIONS(2232), 1, + [111571] = 10, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2234), 1, + ACTIONS(2169), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_STAR_STAR, - ACTIONS(2242), 1, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2262), 1, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - STATE(1764), 1, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + STATE(1309), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 4, + ACTIONS(1530), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 25, + ACTIONS(1532), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_in, - anon_sym_for, 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, @@ -114832,36 +118357,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [111500] = 5, + [111629] = 6, + ACTIONS(2370), 1, + anon_sym_and, + ACTIONS(2372), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2288), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1444), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1364), 4, + ACTIONS(1413), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1362), 28, + ACTIONS(1415), 27, + 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, @@ -114876,83 +118401,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [111549] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2291), 12, - sym_string_start, - ts_builtin_sym_end, + [111679] = 12, + ACTIONS(2167), 1, anon_sym_LPAREN, + ACTIONS(2169), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2293), 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, - [111594] = 7, - ACTIONS(2217), 1, - anon_sym_and, - ACTIONS(2219), 1, - anon_sym_PLUS, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + ACTIONS(2350), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2358), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1530), 3, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 9, + ACTIONS(1532), 21, 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(1465), 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_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -114963,300 +118451,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [111741] = 17, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - [111647] = 9, - ACTIONS(1979), 1, - anon_sym_LBRACE, - ACTIONS(1983), 1, - anon_sym_QMARK_COLON, - ACTIONS(2221), 1, - sym_isMutableFlag, - STATE(1295), 1, - sym_dict_expr, - STATE(2025), 1, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + ACTIONS(2354), 1, + anon_sym_PLUS, + ACTIONS(2356), 1, + anon_sym_DASH, + ACTIONS(2362), 1, + anon_sym_AMP, + ACTIONS(2364), 1, + anon_sym_CARET, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(696), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(694), 26, + ACTIONS(2350), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2358), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2366), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 16, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + 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_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [111704] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2223), 12, - sym__dedent, - sym_string_start, + [111813] = 16, + ACTIONS(2167), 1, anon_sym_LPAREN, + ACTIONS(2169), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + ACTIONS(2354), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2356), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2225), 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, - [111749] = 5, - ACTIONS(2295), 1, - anon_sym_EQ, - STATE(1465), 1, - aux_sym_union_type_repeat1, + ACTIONS(2364), 1, + anon_sym_CARET, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 5, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, + ACTIONS(2350), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2358), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2366), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + 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_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, + [111883] = 15, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - [111798] = 4, - STATE(1465), 1, - aux_sym_union_type_repeat1, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + ACTIONS(2354), 1, + anon_sym_PLUS, + ACTIONS(2356), 1, + anon_sym_DASH, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1243), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1241), 29, + ACTIONS(2350), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2358), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2366), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + 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_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, - [111845] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2264), 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(2266), 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, - [111890] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2291), 12, - sym__dedent, - sym_string_start, + [111951] = 14, + ACTIONS(2167), 1, anon_sym_LPAREN, + ACTIONS(2169), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + ACTIONS(2354), 1, anon_sym_PLUS, - anon_sym_DQUOTE, + ACTIONS(2356), 1, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2293), 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, - [111935] = 4, - STATE(1465), 1, - aux_sym_union_type_repeat1, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1414), 29, + ACTIONS(2350), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2358), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 20, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + 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_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -115267,36 +118665,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [111982] = 4, - STATE(1465), 1, - aux_sym_union_type_repeat1, + [112017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1561), 6, + ACTIONS(1475), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1559), 29, + ACTIONS(1473), 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, @@ -115311,37 +118706,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112029] = 5, - STATE(1455), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + [112061] = 10, + ACTIONS(1532), 1, + anon_sym_LF, + ACTIONS(2386), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_LBRACK, + ACTIONS(2394), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_QMARK_DOT, + ACTIONS(2412), 1, + anon_sym_QMARK_LBRACK, + STATE(1719), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2297), 2, + ACTIONS(1530), 27, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1382), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1380), 28, 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_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, @@ -115349,30 +118747,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, - [112078] = 4, - STATE(2190), 1, - aux_sym_comparison_operator_repeat1, + [112119] = 4, + STATE(1505), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1445), 5, anon_sym_EQ, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1443), 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, @@ -115382,8 +118781,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115398,26 +118796,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112125] = 5, - ACTIONS(2300), 1, - anon_sym_PIPE, - STATE(1457), 1, - aux_sym_union_type_repeat1, + [112165] = 5, + ACTIONS(2372), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 6, - anon_sym_EQ, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1273), 28, + ACTIONS(1415), 28, + 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, @@ -115427,11 +118825,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115442,151 +118839,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112174] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2270), 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(2272), 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, - [112219] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2286), 12, - sym_string_start, - ts_builtin_sym_end, + [112213] = 11, + ACTIONS(1532), 1, + anon_sym_LF, + ACTIONS(2386), 1, anon_sym_LPAREN, + ACTIONS(2388), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, + ACTIONS(2394), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2284), 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, - [112264] = 4, - STATE(1465), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + ACTIONS(2412), 1, + anon_sym_QMARK_LBRACK, + STATE(1719), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 6, - anon_sym_EQ, + ACTIONS(2392), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1273), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1530), 23, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + 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_EQ, - anon_sym_then, + 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, - anon_sym_QMARK_LBRACK, - [112311] = 4, - STATE(1465), 1, - aux_sym_union_type_repeat1, + [112273] = 4, + ACTIONS(2430), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, + ACTIONS(1534), 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(1536), 28, + 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, @@ -115596,9 +118916,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115612,185 +118930,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112358] = 21, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2232), 1, + [112319] = 15, + ACTIONS(1532), 1, + anon_sym_LF, + ACTIONS(2386), 1, anon_sym_LPAREN, - ACTIONS(2234), 1, + ACTIONS(2388), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(2394), 1, anon_sym_STAR_STAR, - ACTIONS(2242), 1, + ACTIONS(2396), 1, anon_sym_QMARK_DOT, - ACTIONS(2250), 1, - anon_sym_PIPE, - ACTIONS(2252), 1, + ACTIONS(2404), 1, anon_sym_AMP, - ACTIONS(2254), 1, + ACTIONS(2406), 1, anon_sym_CARET, - ACTIONS(2262), 1, + ACTIONS(2412), 1, anon_sym_QMARK_LBRACK, - STATE(1764), 1, + STATE(1719), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2238), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2246), 2, + ACTIONS(2400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2248), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2256), 2, + ACTIONS(2408), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1402), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [112439] = 8, - ACTIONS(2306), 1, - anon_sym_not, - ACTIONS(2312), 1, - anon_sym_is, - STATE(1463), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2309), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 4, - anon_sym_EQ, + ACTIONS(2392), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(2303), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1543), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - 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_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, - [112494] = 4, - ACTIONS(2315), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1247), 7, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1245), 28, + ACTIONS(1530), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + 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_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, 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, - [112541] = 4, - STATE(1457), 1, - aux_sym_union_type_repeat1, + [112387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 6, - anon_sym_EQ, + ACTIONS(1823), 4, anon_sym_STAR, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 29, + ACTIONS(1821), 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_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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -115805,63 +119024,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112588] = 4, - ACTIONS(2317), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + [112431] = 14, + ACTIONS(1532), 1, + anon_sym_LF, + ACTIONS(2386), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_LBRACK, + ACTIONS(2394), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_QMARK_DOT, + ACTIONS(2406), 1, + anon_sym_CARET, + ACTIONS(2412), 1, + anon_sym_QMARK_LBRACK, + STATE(1719), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 7, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2400), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2392), 4, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1259), 28, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1530), 18, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COMMA, + 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_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, 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, - [112635] = 4, - STATE(1508), 1, - aux_sym_union_type_repeat1, + [112497] = 6, + ACTIONS(2335), 1, + anon_sym_and, + ACTIONS(2339), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1243), 6, - anon_sym_EQ, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1241), 28, + ACTIONS(1415), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -115874,9 +119106,7 @@ 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_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -115890,18 +119120,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112681] = 5, - ACTIONS(1380), 1, + [112547] = 4, + ACTIONS(1461), 1, anon_sym_LF, - STATE(1468), 1, + STATE(1488), 1, aux_sym_dotted_name_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2319), 2, + ACTIONS(1459), 33, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1382), 31, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -115912,6 +119140,7 @@ 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, @@ -115933,73 +119162,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [112729] = 4, - STATE(1556), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [112593] = 13, + ACTIONS(1532), 1, + anon_sym_LF, + ACTIONS(2386), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_LBRACK, + ACTIONS(2394), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_QMARK_DOT, + ACTIONS(2412), 1, + anon_sym_QMARK_LBRACK, + STATE(1719), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 5, - anon_sym_EQ, + ACTIONS(2400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2392), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1392), 29, - sym__newline, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1530), 19, 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_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, - anon_sym_QMARK_LBRACK, - [112775] = 5, + [112657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1470), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1364), 4, + ACTIONS(1659), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1362), 27, - sym__newline, + ACTIONS(1657), 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, @@ -116018,17 +119254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112823] = 3, + [112701] = 4, + STATE(1497), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 5, - anon_sym_EQ, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1591), 30, + ACTIONS(1617), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116059,33 +119296,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [112867] = 4, - ACTIONS(1225), 1, - anon_sym_LF, - ACTIONS(5), 2, + [112747] = 4, + STATE(1497), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 32, + ACTIONS(1619), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 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, @@ -116093,41 +119332,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, - [112913] = 4, - ACTIONS(1225), 1, - anon_sym_LF, - ACTIONS(5), 2, + [112793] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 32, + ACTIONS(1743), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1745), 31, 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_LBRACE, 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, @@ -116135,179 +119373,203 @@ 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, - [112959] = 8, - ACTIONS(2325), 1, - anon_sym_and, - ACTIONS(2327), 1, - anon_sym_or, - ACTIONS(2329), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + [112837] = 20, + ACTIONS(1447), 1, + anon_sym_LF, + ACTIONS(1453), 1, + anon_sym_not, + ACTIONS(1457), 1, + anon_sym_is, + ACTIONS(2386), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_LBRACK, + ACTIONS(2394), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_QMARK_DOT, + ACTIONS(2402), 1, + anon_sym_PIPE, + ACTIONS(2404), 1, + anon_sym_AMP, + ACTIONS(2406), 1, + anon_sym_CARET, + ACTIONS(2412), 1, + anon_sym_QMARK_LBRACK, + STATE(1719), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 4, + ACTIONS(1449), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2392), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1485), 24, - sym__newline, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1319), 5, + anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(1451), 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, + [112915] = 22, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, anon_sym_LPAREN, + ACTIONS(2169), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2352), 1, anon_sym_STAR_STAR, - anon_sym_not, + ACTIONS(2354), 1, + anon_sym_PLUS, + ACTIONS(2356), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2360), 1, anon_sym_PIPE, + ACTIONS(2362), 1, anon_sym_AMP, + ACTIONS(2364), 1, anon_sym_CARET, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2350), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2358), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2366), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1515), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 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, - [113013] = 22, - ACTIONS(2038), 1, + [112997] = 22, + ACTIONS(2066), 1, anon_sym_not, - ACTIONS(2054), 1, + ACTIONS(2070), 1, anon_sym_is, - ACTIONS(2161), 1, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2177), 1, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, + ACTIONS(2352), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2354), 1, anon_sym_PLUS, - ACTIONS(2337), 1, + ACTIONS(2356), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2360), 1, anon_sym_PIPE, - ACTIONS(2343), 1, + ACTIONS(2362), 1, anon_sym_AMP, - ACTIONS(2345), 1, + ACTIONS(2364), 1, anon_sym_CARET, - STATE(1282), 1, + STATE(1309), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(2350), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(2358), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, + ACTIONS(2366), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1402), 3, + ACTIONS(1511), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, + ACTIONS(1321), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - [113095] = 6, - ACTIONS(1251), 1, - anon_sym_LF, - ACTIONS(2349), 1, - anon_sym_and, - ACTIONS(2351), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1253), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, + ACTIONS(1455), 5, anon_sym_in, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - anon_sym_not, - 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [113145] = 5, - ACTIONS(2329), 1, - anon_sym_PLUS, + [113079] = 4, + STATE(1517), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, + ACTIONS(1501), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 28, + ACTIONS(1503), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -116322,6 +119584,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, @@ -116336,37 +119599,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113193] = 7, - ACTIONS(2325), 1, - anon_sym_and, - ACTIONS(2329), 1, - anon_sym_PLUS, + [113125] = 5, + STATE(1535), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + ACTIONS(2432), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1475), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 8, + ACTIONS(1473), 27, 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(1465), 19, anon_sym_LPAREN, anon_sym_LBRACK, 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, @@ -116381,33 +119642,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113245] = 4, - ACTIONS(1259), 1, - anon_sym_LF, - STATE(1544), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [113173] = 4, + STATE(1497), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 33, + ACTIONS(1619), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 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, @@ -116415,25 +119678,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, - [113291] = 3, + [113219] = 4, + STATE(1497), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1525), 5, - anon_sym_EQ, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1523), 30, + ACTIONS(1617), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116464,34 +119726,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113335] = 3, + [113265] = 4, + ACTIONS(2435), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 5, + ACTIONS(1501), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1587), 30, + ACTIONS(1503), 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, anon_sym_PIPE, @@ -116505,33 +119768,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113379] = 3, + [113311] = 20, + ACTIONS(2414), 1, + anon_sym_LPAREN, + ACTIONS(2416), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, + anon_sym_QMARK_DOT, + ACTIONS(2422), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2441), 1, + anon_sym_not, + ACTIONS(2447), 1, + anon_sym_PIPE, + ACTIONS(2449), 1, + anon_sym_AMP, + ACTIONS(2451), 1, + anon_sym_CARET, + ACTIONS(2457), 1, + anon_sym_is, + STATE(1672), 1, + sym_argument_list, + STATE(1821), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1585), 5, - anon_sym_EQ, + ACTIONS(2439), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2455), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1583), 30, + ACTIONS(2437), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1321), 8, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [113389] = 6, + ACTIONS(2370), 1, + anon_sym_and, + ACTIONS(2372), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1497), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1499), 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_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, @@ -116546,34 +119870,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113423] = 7, - ACTIONS(1440), 1, + [113439] = 4, + ACTIONS(1471), 1, anon_sym_LF, - ACTIONS(2349), 1, - anon_sym_and, - ACTIONS(2351), 1, - anon_sym_PLUS, + STATE(1525), 1, + aux_sym_dotted_name_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 7, + ACTIONS(1469), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1463), 23, 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, @@ -116591,17 +119912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [113475] = 3, + [113485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 5, - anon_sym_EQ, + ACTIONS(1687), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 30, + ACTIONS(1685), 31, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -116610,6 +119930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_for, @@ -116632,71 +119953,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113519] = 5, - ACTIONS(2329), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + [113529] = 12, + ACTIONS(1532), 1, + anon_sym_LF, + ACTIONS(2386), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_LBRACK, + ACTIONS(2394), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_QMARK_DOT, + ACTIONS(2412), 1, + anon_sym_QMARK_LBRACK, + STATE(1719), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 4, + ACTIONS(2400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2392), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1444), 28, - sym__newline, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1530), 21, 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_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, 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, - [113567] = 3, + [113591] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1382), 5, - anon_sym_EQ, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1380), 30, + ACTIONS(1556), 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, @@ -116716,42 +120045,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [113611] = 10, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [113637] = 4, + ACTIONS(2297), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 5, + ACTIONS(1465), 5, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 23, + ACTIONS(1463), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + 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, anon_sym_PIPE, @@ -116764,42 +120086,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [113669] = 10, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [113683] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 5, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1562), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 23, + ACTIONS(1560), 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, @@ -116812,260 +120128,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [113727] = 12, - ACTIONS(2161), 1, + anon_sym_QMARK_LBRACK, + [113729] = 21, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2414), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, + ACTIONS(2416), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, anon_sym_QMARK_DOT, - ACTIONS(2177), 1, + ACTIONS(2422), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - STATE(1282), 1, + ACTIONS(2447), 1, + anon_sym_PIPE, + ACTIONS(2449), 1, + anon_sym_AMP, + ACTIONS(2451), 1, + anon_sym_CARET, + STATE(1672), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2331), 2, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2439), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(2443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1324), 3, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1322), 21, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1511), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(1321), 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_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1455), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + [113809] = 21, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, anon_sym_is, - [113789] = 17, - ACTIONS(2161), 1, + ACTIONS(2414), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, + ACTIONS(2416), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, anon_sym_QMARK_DOT, - ACTIONS(2177), 1, + ACTIONS(2422), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_PLUS, - ACTIONS(2337), 1, - anon_sym_DASH, - ACTIONS(2343), 1, + ACTIONS(2447), 1, + anon_sym_PIPE, + ACTIONS(2449), 1, anon_sym_AMP, - ACTIONS(2345), 1, + ACTIONS(2451), 1, anon_sym_CARET, - STATE(1282), 1, + STATE(1672), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(2439), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(2443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, + ACTIONS(2453), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1322), 16, + ACTIONS(1515), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(1321), 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, + ACTIONS(1455), 5, anon_sym_in, - anon_sym_not, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [113889] = 7, + ACTIONS(1415), 1, + anon_sym_LF, + ACTIONS(2329), 1, anon_sym_and, + ACTIONS(2331), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, anon_sym_or, + ACTIONS(1433), 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, - [113861] = 16, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, + [113941] = 6, ACTIONS(2335), 1, + anon_sym_and, + ACTIONS(2339), 1, anon_sym_PLUS, - ACTIONS(2337), 1, - anon_sym_DASH, - ACTIONS(2345), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1497), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1499), 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_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, - [113931] = 15, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_PLUS, - ACTIONS(2337), 1, - anon_sym_DASH, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [113991] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1556), 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, - ACTIONS(2347), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1322), 18, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [114037] = 4, + STATE(1517), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1550), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1552), 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, + 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, - [113999] = 14, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_PLUS, - ACTIONS(2337), 1, - anon_sym_DASH, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [114083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(1675), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 20, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + 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, @@ -117076,36 +120460,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [114065] = 5, - STATE(1494), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, + anon_sym_QMARK_LBRACK, + [114127] = 10, + ACTIONS(1291), 1, + anon_sym_LF, + ACTIONS(2329), 1, + anon_sym_and, + ACTIONS(2331), 1, + anon_sym_PLUS, + ACTIONS(2459), 1, + anon_sym_as, + ACTIONS(2461), 1, + anon_sym_if, + ACTIONS(2463), 1, + anon_sym_or, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2353), 2, + ACTIONS(882), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1382), 5, - anon_sym_EQ, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1285), 25, + 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_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, - ACTIONS(1380), 27, - sym__newline, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [114185] = 8, + ACTIONS(1301), 1, + anon_sym_LF, + ACTIONS(2329), 1, + anon_sym_and, + ACTIONS(2331), 1, + anon_sym_PLUS, + ACTIONS(2463), 1, + anon_sym_or, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(882), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1299), 27, 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_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, @@ -117113,28 +120547,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, - [114113] = 4, - ACTIONS(1269), 1, + [114239] = 4, + ACTIONS(1519), 1, anon_sym_LF, + STATE(1561), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1271), 32, + ACTIONS(1517), 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, @@ -117161,57 +120597,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [114159] = 20, - ACTIONS(1280), 1, - anon_sym_LF, - ACTIONS(1298), 1, + [114285] = 20, + ACTIONS(1453), 1, anon_sym_not, - ACTIONS(1314), 1, + ACTIONS(1457), 1, anon_sym_is, - ACTIONS(2356), 1, + ACTIONS(1515), 1, + anon_sym_LF, + ACTIONS(2386), 1, anon_sym_LPAREN, - ACTIONS(2358), 1, + ACTIONS(2388), 1, anon_sym_LBRACK, - ACTIONS(2362), 1, + ACTIONS(2394), 1, anon_sym_STAR_STAR, - ACTIONS(2364), 1, + ACTIONS(2396), 1, anon_sym_QMARK_DOT, - ACTIONS(2368), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2404), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2406), 1, anon_sym_CARET, - ACTIONS(2376), 1, + ACTIONS(2412), 1, anon_sym_QMARK_LBRACK, - STATE(1807), 1, + STATE(1719), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1282), 2, + ACTIONS(1513), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2366), 2, + ACTIONS(2400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2374), 2, + ACTIONS(2408), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2360), 4, + ACTIONS(2392), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1284), 5, + ACTIONS(1319), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(1290), 7, + ACTIONS(1451), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -117219,88 +120655,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - [114237] = 15, - ACTIONS(2378), 1, - anon_sym_LPAREN, - ACTIONS(2380), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, - anon_sym_STAR_STAR, - ACTIONS(2386), 1, - anon_sym_QMARK_DOT, - ACTIONS(2392), 1, - anon_sym_CARET, - ACTIONS(2396), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [114363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2382), 2, + ACTIONS(1735), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2390), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2394), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 17, - sym__newline, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1737), 31, 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_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, - [114305] = 4, - ACTIONS(2398), 1, - anon_sym_DASH_GT, + anon_sym_QMARK_LBRACK, + [114407] = 4, + STATE(2220), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 6, - anon_sym_EQ, + ACTIONS(1605), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1245), 28, - sym__newline, + ACTIONS(1607), 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, anon_sym_PIPE, @@ -117314,57 +120738,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114351] = 20, - ACTIONS(1298), 1, + [114453] = 20, + ACTIONS(1453), 1, anon_sym_not, - ACTIONS(1314), 1, + ACTIONS(1457), 1, anon_sym_is, - ACTIONS(1318), 1, + ACTIONS(1511), 1, anon_sym_LF, - ACTIONS(2356), 1, + ACTIONS(2386), 1, anon_sym_LPAREN, - ACTIONS(2358), 1, + ACTIONS(2388), 1, anon_sym_LBRACK, - ACTIONS(2362), 1, + ACTIONS(2394), 1, anon_sym_STAR_STAR, - ACTIONS(2364), 1, + ACTIONS(2396), 1, anon_sym_QMARK_DOT, - ACTIONS(2368), 1, + ACTIONS(2402), 1, anon_sym_PIPE, - ACTIONS(2370), 1, + ACTIONS(2404), 1, anon_sym_AMP, - ACTIONS(2372), 1, + ACTIONS(2406), 1, anon_sym_CARET, - ACTIONS(2376), 1, + ACTIONS(2412), 1, anon_sym_QMARK_LBRACK, - STATE(1807), 1, + STATE(1719), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1320), 2, + ACTIONS(1509), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2366), 2, + ACTIONS(2400), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2374), 2, + ACTIONS(2408), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2360), 4, + ACTIONS(2392), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1284), 5, + ACTIONS(1319), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(1290), 7, + ACTIONS(1451), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -117372,65 +120796,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - [114429] = 5, - ACTIONS(2400), 1, - anon_sym_PIPE, - STATE(1500), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1275), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1273), 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_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - 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, - [114477] = 4, - ACTIONS(1378), 1, + [114531] = 4, + ACTIONS(1443), 1, anon_sym_LF, + STATE(1591), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1528), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1376), 32, + ACTIONS(1445), 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, @@ -117457,115 +120838,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [114523] = 6, - ACTIONS(2325), 1, - anon_sym_and, - ACTIONS(2329), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1253), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1251), 27, - sym__newline, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + [114577] = 19, + ACTIONS(1321), 1, + anon_sym_LF, + ACTIONS(2386), 1, anon_sym_LPAREN, + ACTIONS(2388), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2394), 1, anon_sym_STAR_STAR, + ACTIONS(2396), 1, anon_sym_QMARK_DOT, + ACTIONS(2398), 1, anon_sym_not, - anon_sym_or, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2402), 1, anon_sym_PIPE, + ACTIONS(2404), 1, anon_sym_AMP, + ACTIONS(2406), 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(2410), 1, anon_sym_is, + ACTIONS(2412), 1, anon_sym_QMARK_LBRACK, - [114573] = 4, - ACTIONS(1273), 1, - anon_sym_LF, - STATE(1544), 1, - aux_sym_union_type_repeat1, + STATE(1719), 1, + sym_argument_list, + STATE(1808), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 33, + ACTIONS(2400), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2408), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2392), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1319), 7, 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, 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, + ACTIONS(2390), 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, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [114619] = 4, - ACTIONS(2215), 1, - anon_sym_EQ, + [114653] = 4, + STATE(1517), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, + ACTIONS(1542), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 30, + ACTIONS(1544), 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, @@ -117585,155 +120937,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114665] = 22, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2161), 1, + [114699] = 20, + ACTIONS(2414), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, + ACTIONS(2416), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, anon_sym_QMARK_DOT, - ACTIONS(2177), 1, + ACTIONS(2422), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_PLUS, - ACTIONS(2337), 1, - anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2441), 1, + anon_sym_not, + ACTIONS(2447), 1, anon_sym_PIPE, - ACTIONS(2343), 1, + ACTIONS(2449), 1, anon_sym_AMP, - ACTIONS(2345), 1, + ACTIONS(2451), 1, anon_sym_CARET, - STATE(1282), 1, + ACTIONS(2457), 1, + anon_sym_is, + STATE(1672), 1, sym_argument_list, - STATE(2215), 1, + STATE(2232), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, + ACTIONS(2439), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1318), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [114747] = 22, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2443), 2, anon_sym_PLUS, - ACTIONS(2337), 1, anon_sym_DASH, - ACTIONS(2341), 1, - anon_sym_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2331), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(2445), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, + ACTIONS(2453), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1280), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - ACTIONS(1312), 5, + ACTIONS(2455), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, + ACTIONS(1321), 8, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_and, anon_sym_or, - [114829] = 4, - STATE(1417), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [114777] = 5, + ACTIONS(1607), 1, + anon_sym_LF, + ACTIONS(2465), 1, + anon_sym_LBRACE, + STATE(1886), 1, + sym_dictionary, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1561), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1559), 30, + ACTIONS(1605), 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, @@ -117741,34 +121030,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, - [114875] = 4, - STATE(1500), 1, - aux_sym_union_type_repeat1, + [114825] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 6, - anon_sym_EQ, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1546), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 28, + ACTIONS(1548), 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, @@ -117776,6 +121066,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, @@ -117789,44 +121080,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [114921] = 8, - ACTIONS(2406), 1, - anon_sym_not, - ACTIONS(2412), 1, - anon_sym_is, - STATE(1509), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [114871] = 4, + ACTIONS(1437), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2409), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2403), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1543), 23, + STATE(1502), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1439), 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, @@ -117834,36 +121114,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, - [114975] = 4, - STATE(1508), 1, - aux_sym_union_type_repeat1, + [114917] = 4, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 6, - anon_sym_EQ, + ACTIONS(1605), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1273), 28, + ACTIONS(1607), 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, @@ -117877,22 +121164,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115021] = 4, - ACTIONS(1428), 1, + [114963] = 4, + ACTIONS(1544), 1, anon_sym_LF, + STATE(1561), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 32, + ACTIONS(1542), 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, @@ -117903,57 +121190,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, - 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, - [115067] = 10, - ACTIONS(2415), 1, - anon_sym_as, - ACTIONS(2417), 1, - anon_sym_if, - ACTIONS(2419), 1, - anon_sym_and, - ACTIONS(2421), 1, - anon_sym_or, - ACTIONS(2423), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1493), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1491), 21, - 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_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -117961,41 +121198,47 @@ 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, - [115125] = 4, - STATE(1508), 1, - aux_sym_union_type_repeat1, + [115009] = 8, + ACTIONS(2370), 1, + anon_sym_and, + ACTIONS(2372), 1, + anon_sym_PLUS, + ACTIONS(2467), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, - anon_sym_EQ, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1299), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 28, - anon_sym_DOT, + ACTIONS(1301), 24, + sym__newline, 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, @@ -118009,44 +121252,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115171] = 12, - ACTIONS(1322), 1, + [115063] = 4, + ACTIONS(1548), 1, anon_sym_LF, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, - anon_sym_QMARK_DOT, - ACTIONS(2376), 1, - anon_sym_QMARK_LBRACK, - STATE(1807), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2360), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1324), 21, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1546), 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, @@ -118059,50 +121293,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - [115233] = 13, - ACTIONS(1322), 1, - anon_sym_LF, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, - anon_sym_QMARK_DOT, - ACTIONS(2376), 1, anon_sym_QMARK_LBRACK, - STATE(1807), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [115109] = 4, + ACTIONS(1560), 1, + anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2374), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2360), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1324), 19, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1562), 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, @@ -118110,35 +121335,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - [115297] = 4, - ACTIONS(2295), 1, - anon_sym_EQ, - ACTIONS(3), 2, + anon_sym_QMARK_LBRACK, + [115155] = 5, + ACTIONS(1419), 1, + anon_sym_LF, + ACTIONS(2331), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 5, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1394), 29, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1417), 31, 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_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_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118146,41 +121371,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, - [115343] = 4, - STATE(1508), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [115203] = 5, + ACTIONS(1415), 1, + anon_sym_LF, + ACTIONS(2331), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1414), 28, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 31, 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, 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, @@ -118188,110 +121414,48 @@ 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, - [115389] = 14, - ACTIONS(1322), 1, + [115251] = 4, + ACTIONS(1503), 1, anon_sym_LF, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, - anon_sym_QMARK_DOT, - ACTIONS(2372), 1, - anon_sym_CARET, - ACTIONS(2376), 1, - anon_sym_QMARK_LBRACK, - STATE(1807), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2469), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2374), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2360), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1324), 18, + ACTIONS(1501), 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, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, 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, - [115455] = 15, - ACTIONS(1322), 1, - anon_sym_LF, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, - anon_sym_QMARK_DOT, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, - ACTIONS(2376), 1, - anon_sym_QMARK_LBRACK, - STATE(1807), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2366), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2374), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2360), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1324), 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -118299,43 +121463,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - [115523] = 11, - ACTIONS(1322), 1, - anon_sym_LF, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, - anon_sym_QMARK_DOT, - ACTIONS(2376), 1, anon_sym_QMARK_LBRACK, - STATE(1807), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [115297] = 5, + ACTIONS(1411), 1, + anon_sym_LF, + ACTIONS(2331), 1, + anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2360), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1324), 23, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1409), 31, 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, @@ -118348,33 +121506,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - [115583] = 4, - ACTIONS(1241), 1, - anon_sym_LF, - STATE(1544), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + anon_sym_QMARK_LBRACK, + [115345] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1243), 33, + ACTIONS(1613), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1615), 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, @@ -118382,47 +121542,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, - [115629] = 8, - ACTIONS(2419), 1, - anon_sym_and, - ACTIONS(2421), 1, - anon_sym_or, - ACTIONS(2423), 1, - anon_sym_PLUS, + [115389] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1606), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1487), 5, + ACTIONS(1439), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 23, + ACTIONS(1437), 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, @@ -118436,40 +121590,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115683] = 10, - ACTIONS(1322), 1, - anon_sym_LF, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, - anon_sym_QMARK_DOT, - ACTIONS(2376), 1, - anon_sym_QMARK_LBRACK, - STATE(1807), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [115435] = 5, + ACTIONS(2372), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 27, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1417), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1419), 28, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, + 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, @@ -118477,47 +121627,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, - [115741] = 10, - ACTIONS(1322), 1, - anon_sym_LF, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, - anon_sym_QMARK_DOT, - ACTIONS(2376), 1, anon_sym_QMARK_LBRACK, - STATE(1807), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [115483] = 5, + ACTIONS(2339), 1, + anon_sym_PLUS, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 27, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1409), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1411), 27, 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, + 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, @@ -118525,31 +121670,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, - [115799] = 6, - ACTIONS(2419), 1, - anon_sym_and, - ACTIONS(2423), 1, + anon_sym_QMARK_LBRACK, + [115531] = 5, + ACTIONS(2339), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1253), 5, + ACTIONS(1413), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 26, + ACTIONS(1415), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -118562,6 +121704,7 @@ 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, @@ -118576,36 +121719,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115849] = 5, - ACTIONS(2130), 1, - anon_sym_in, - ACTIONS(2425), 1, - anon_sym_not, + [115579] = 5, + ACTIONS(2339), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, - anon_sym_EQ, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1417), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1419), 27, 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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118619,28 +121762,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115897] = 3, + [115627] = 4, + STATE(1535), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 5, + ACTIONS(1459), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(1461), 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, @@ -118660,28 +121804,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [115941] = 5, - ACTIONS(1362), 1, + [115673] = 10, + ACTIONS(1425), 1, anon_sym_LF, + ACTIONS(2386), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_LBRACK, + ACTIONS(2394), 1, + anon_sym_STAR_STAR, + ACTIONS(2396), 1, + anon_sym_QMARK_DOT, + ACTIONS(2412), 1, + anon_sym_QMARK_LBRACK, + STATE(1719), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2427), 2, + ACTIONS(1427), 27, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1528), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1364), 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, @@ -118702,43 +121852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_GT, anon_sym_is, - anon_sym_QMARK_LBRACK, - [115989] = 10, - ACTIONS(2378), 1, - anon_sym_LPAREN, - ACTIONS(2380), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, - anon_sym_STAR_STAR, - ACTIONS(2386), 1, - anon_sym_QMARK_DOT, - ACTIONS(2396), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [115731] = 4, + ACTIONS(1503), 1, + anon_sym_LF, + STATE(1561), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1372), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1374), 24, - sym__newline, + ACTIONS(1501), 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, @@ -118746,43 +121886,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, - [116047] = 7, - ACTIONS(2325), 1, - anon_sym_and, - ACTIONS(2329), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [115777] = 4, + STATE(1625), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + ACTIONS(1542), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 5, + ACTIONS(1544), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1465), 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_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, @@ -118796,27 +121936,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116099] = 4, - STATE(1469), 1, + [115823] = 4, + STATE(1625), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 5, + ACTIONS(1550), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1414), 29, - sym__newline, + ACTIONS(1552), 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, @@ -118824,7 +121965,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, @@ -118838,36 +121978,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116145] = 5, + [115869] = 6, + ACTIONS(1499), 1, + anon_sym_LF, ACTIONS(2329), 1, + anon_sym_and, + ACTIONS(2331), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, + STATE(1567), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1426), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1424), 28, - sym__newline, + ACTIONS(1497), 30, 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_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -118875,46 +122014,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, - [116193] = 10, - ACTIONS(2325), 1, - anon_sym_and, - ACTIONS(2327), 1, - anon_sym_or, - ACTIONS(2329), 1, - anon_sym_PLUS, - ACTIONS(2430), 1, - anon_sym_as, - ACTIONS(2432), 1, - anon_sym_if, + [115919] = 5, + ACTIONS(2141), 1, + anon_sym_in, + ACTIONS(2471), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1493), 4, + ACTIONS(1605), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 22, - sym__newline, - anon_sym_COMMA, + ACTIONS(1607), 27, + 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_not, + 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, @@ -118928,34 +122064,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [116251] = 4, - ACTIONS(1414), 1, - anon_sym_LF, - STATE(1544), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + anon_sym_QMARK_LBRACK, + [115967] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 33, + ACTIONS(1621), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1623), 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, @@ -118963,23 +122100,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, - [116297] = 4, - ACTIONS(1459), 1, + [116011] = 5, + ACTIONS(1519), 1, anon_sym_LF, - STATE(1550), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(2473), 1, + anon_sym_PIPE, + STATE(1591), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1461), 33, + ACTIONS(1517), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -119000,7 +122137,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, @@ -119013,57 +122149,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [116343] = 21, - ACTIONS(2161), 1, + [116059] = 21, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2177), 1, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, + ACTIONS(2352), 1, anon_sym_STAR_STAR, - ACTIONS(2335), 1, + ACTIONS(2354), 1, anon_sym_PLUS, - ACTIONS(2337), 1, + ACTIONS(2356), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2360), 1, anon_sym_PIPE, - ACTIONS(2343), 1, + ACTIONS(2362), 1, anon_sym_AMP, - ACTIONS(2345), 1, + ACTIONS(2364), 1, anon_sym_CARET, - ACTIONS(2436), 1, + ACTIONS(2478), 1, anon_sym_not, - ACTIONS(2440), 1, + ACTIONS(2482), 1, anon_sym_is, - STATE(1282), 1, + STATE(1309), 1, sym_argument_list, - STATE(2197), 1, + STATE(1787), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2331), 2, + ACTIONS(2350), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(2358), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2347), 2, + ACTIONS(2366), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2438), 2, + ACTIONS(2480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 5, + ACTIONS(2476), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 8, + ACTIONS(1321), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -119072,22 +122208,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_and, anon_sym_or, - [116423] = 5, - ACTIONS(2130), 1, + [116139] = 5, + ACTIONS(2141), 1, anon_sym_in, - ACTIONS(2442), 1, + ACTIONS(2484), 1, anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, + ACTIONS(1605), 6, anon_sym_EQ, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1607), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -119115,37 +122251,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116471] = 10, - ACTIONS(1491), 1, + [116187] = 4, + ACTIONS(1552), 1, anon_sym_LF, - ACTIONS(2349), 1, - anon_sym_and, - ACTIONS(2351), 1, - anon_sym_PLUS, - ACTIONS(2444), 1, - anon_sym_as, - ACTIONS(2446), 1, - anon_sym_if, - ACTIONS(2448), 1, - anon_sym_or, + STATE(1561), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, + ACTIONS(1550), 33, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1493), 25, + 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, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -119163,23 +122293,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [116529] = 5, - ACTIONS(1394), 1, + [116233] = 4, + ACTIONS(1526), 1, anon_sym_LF, - ACTIONS(2450), 1, - anon_sym_EQ, - STATE(1544), 1, - aux_sym_union_type_repeat1, + ACTIONS(2486), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 32, + ACTIONS(1524), 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, @@ -119206,92 +122335,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [116577] = 20, - ACTIONS(1298), 1, - anon_sym_not, - ACTIONS(1314), 1, - anon_sym_is, - ACTIONS(1402), 1, - anon_sym_LF, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, - anon_sym_QMARK_DOT, - ACTIONS(2368), 1, - anon_sym_PIPE, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, - ACTIONS(2376), 1, - anon_sym_QMARK_LBRACK, - STATE(1807), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [116279] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1404), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2374), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2360), 4, + ACTIONS(1597), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1284), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(1290), 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, - [116655] = 5, - ACTIONS(1444), 1, - anon_sym_LF, - ACTIONS(2351), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 31, + ACTIONS(1599), 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, @@ -119299,46 +122370,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, - [116703] = 4, - STATE(1509), 1, - aux_sym_comparison_operator_repeat1, + [116323] = 5, + ACTIONS(2488), 1, + anon_sym_PIPE, + STATE(1597), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1517), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 30, + ACTIONS(1519), 27, 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, @@ -119349,18 +122419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116749] = 4, - STATE(1547), 1, - aux_sym_comparison_operator_repeat1, + [116371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1611), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1609), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -119391,33 +122460,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116795] = 4, - ACTIONS(1392), 1, - anon_sym_LF, - STATE(1589), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [116415] = 10, + ACTIONS(2370), 1, + anon_sym_and, + ACTIONS(2372), 1, + anon_sym_PLUS, + ACTIONS(2467), 1, + anon_sym_or, + ACTIONS(2491), 1, + anon_sym_as, + ACTIONS(2493), 1, + anon_sym_if, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 33, + ACTIONS(43), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_QMARK_DOT, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1285), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1291), 22, + sym__newline, 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, @@ -119425,42 +122502,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, - [116841] = 5, - ACTIONS(1440), 1, - anon_sym_LF, - ACTIONS(2351), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [116473] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 31, + ACTIONS(1603), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1601), 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, @@ -119468,37 +122543,95 @@ 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, - [116889] = 4, - STATE(1509), 1, + [116517] = 21, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2414), 1, + anon_sym_LPAREN, + ACTIONS(2416), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, + anon_sym_QMARK_DOT, + ACTIONS(2422), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2447), 1, + anon_sym_PIPE, + ACTIONS(2449), 1, + anon_sym_AMP, + ACTIONS(2451), 1, + anon_sym_CARET, + STATE(1672), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2439), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1447), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [116597] = 5, + ACTIONS(2495), 1, + anon_sym_EQ, + STATE(1517), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1465), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 30, + ACTIONS(1463), 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, @@ -119518,29 +122651,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116935] = 4, - STATE(1509), 1, - aux_sym_comparison_operator_repeat1, + [116645] = 4, + STATE(1583), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1469), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 30, + ACTIONS(1471), 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, @@ -119560,35 +122693,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [116981] = 8, - ACTIONS(1485), 1, + [116691] = 4, + ACTIONS(1536), 1, anon_sym_LF, - ACTIONS(2349), 1, - anon_sym_and, - ACTIONS(2351), 1, - anon_sym_PLUS, - ACTIONS(2448), 1, - anon_sym_or, + ACTIONS(2497), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, + ACTIONS(1534), 33, anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 27, 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, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -119606,34 +122735,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [117035] = 4, - STATE(1509), 1, - aux_sym_comparison_operator_repeat1, + [116737] = 7, + ACTIONS(2370), 1, + anon_sym_and, + ACTIONS(2372), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + STATE(1578), 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(1665), 30, + ACTIONS(1415), 8, + sym__newline, 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, + ACTIONS(1435), 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, @@ -119648,33 +122780,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117081] = 4, - ACTIONS(1467), 1, - anon_sym_LF, - STATE(1468), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + [116789] = 5, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 33, + ACTIONS(2499), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1489), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1487), 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, @@ -119682,102 +122817,83 @@ 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, - [117127] = 19, - ACTIONS(1328), 1, - anon_sym_LF, - ACTIONS(2356), 1, + [116837] = 10, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2358), 1, + ACTIONS(2169), 1, anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2368), 1, - anon_sym_PIPE, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, - ACTIONS(2376), 1, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2454), 1, - anon_sym_not, - ACTIONS(2456), 1, - anon_sym_is, - STATE(1779), 1, - aux_sym_comparison_operator_repeat1, - STATE(1807), 1, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + STATE(1309), 1, sym_argument_list, - ACTIONS(5), 2, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2374), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2360), 4, + ACTIONS(1427), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1284), 7, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1425), 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, - ACTIONS(2452), 7, - anon_sym_in, - anon_sym_LT, + 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_GT, - [117203] = 10, - ACTIONS(2378), 1, - anon_sym_LPAREN, - ACTIONS(2380), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, - anon_sym_STAR_STAR, - ACTIONS(2386), 1, - anon_sym_QMARK_DOT, - ACTIONS(2396), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + [116895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 4, + ACTIONS(1679), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 24, - sym__newline, + ACTIONS(1677), 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, @@ -119795,30 +122911,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [117261] = 4, + anon_sym_QMARK_LBRACK, + [116939] = 10, + ACTIONS(2414), 1, + anon_sym_LPAREN, + ACTIONS(2416), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, + anon_sym_QMARK_DOT, + ACTIONS(2422), 1, + anon_sym_QMARK_LBRACK, + STATE(1672), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 4, + ACTIONS(1530), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1428), 29, + ACTIONS(1532), 24, 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, @@ -119836,36 +122960,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [116997] = 10, + ACTIONS(2414), 1, + anon_sym_LPAREN, + ACTIONS(2416), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, + anon_sym_QMARK_DOT, + ACTIONS(2422), 1, anon_sym_QMARK_LBRACK, - [117307] = 4, - ACTIONS(2458), 1, - anon_sym_DASH_GT, + STATE(1672), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, - anon_sym_EQ, + ACTIONS(1530), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 28, + ACTIONS(1532), 24, 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, @@ -119878,38 +123008,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [117055] = 12, + ACTIONS(2414), 1, + anon_sym_LPAREN, + ACTIONS(2416), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, + anon_sym_QMARK_DOT, + ACTIONS(2422), 1, anon_sym_QMARK_LBRACK, - [117353] = 4, - STATE(1469), 1, - aux_sym_union_type_repeat1, + STATE(1672), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1273), 29, + ACTIONS(2439), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2445), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 22, 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, @@ -119920,31 +123058,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, + [117117] = 16, + ACTIONS(2414), 1, + anon_sym_LPAREN, + ACTIONS(2416), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, + anon_sym_QMARK_DOT, + ACTIONS(2422), 1, anon_sym_QMARK_LBRACK, - [117399] = 5, - ACTIONS(2460), 1, - anon_sym_PIPE, - STATE(1556), 1, - aux_sym_union_type_repeat1, + ACTIONS(2449), 1, + anon_sym_AMP, + ACTIONS(2451), 1, + anon_sym_CARET, + STATE(1672), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1273), 28, + ACTIONS(2439), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 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_is, + [117187] = 4, + ACTIONS(1556), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 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, @@ -119952,72 +123138,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, - [117447] = 5, - ACTIONS(2423), 1, - anon_sym_PLUS, + [117233] = 15, + ACTIONS(2414), 1, + anon_sym_LPAREN, + ACTIONS(2416), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, + anon_sym_STAR_STAR, + ACTIONS(2420), 1, + anon_sym_QMARK_DOT, + ACTIONS(2422), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2451), 1, + anon_sym_CARET, + STATE(1672), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1444), 27, + ACTIONS(2439), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 17, + 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_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, - [117495] = 3, + [117301] = 4, + STATE(1529), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 5, - anon_sym_EQ, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 30, + ACTIONS(1607), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120048,76 +123249,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117539] = 5, - ACTIONS(1424), 1, - anon_sym_LF, - ACTIONS(2351), 1, + [117347] = 5, + ACTIONS(2372), 1, anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1426), 31, - 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, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_GT, - anon_sym_is, - anon_sym_QMARK_LBRACK, - [117587] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1541), 5, - anon_sym_EQ, + ACTIONS(1409), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 30, + ACTIONS(1411), 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, @@ -120132,30 +123292,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117631] = 10, - ACTIONS(2378), 1, + [117395] = 14, + ACTIONS(2414), 1, anon_sym_LPAREN, - ACTIONS(2380), 1, + ACTIONS(2416), 1, anon_sym_LBRACK, - ACTIONS(2384), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2386), 1, + ACTIONS(2420), 1, anon_sym_QMARK_DOT, - ACTIONS(2396), 1, + ACTIONS(2422), 1, anon_sym_QMARK_LBRACK, - STATE(1812), 1, + STATE(1672), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 24, + ACTIONS(2439), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2453), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 18, sym__newline, anon_sym_DOT, anon_sym_as, @@ -120166,90 +123336,88 @@ 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, - 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, - [117689] = 10, - ACTIONS(1374), 1, - anon_sym_LF, - ACTIONS(2356), 1, + [117461] = 13, + ACTIONS(2414), 1, anon_sym_LPAREN, - ACTIONS(2358), 1, + ACTIONS(2416), 1, anon_sym_LBRACK, - ACTIONS(2362), 1, + ACTIONS(2418), 1, anon_sym_STAR_STAR, - ACTIONS(2364), 1, + ACTIONS(2420), 1, anon_sym_QMARK_DOT, - ACTIONS(2376), 1, + ACTIONS(2422), 1, anon_sym_QMARK_LBRACK, - STATE(1807), 1, + STATE(1672), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1372), 27, + ACTIONS(1530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2439), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2445), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 20, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, anon_sym_in, - 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, 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, - [117747] = 5, - ACTIONS(2463), 1, + [117525] = 5, + ACTIONS(2502), 1, anon_sym_EQ, - STATE(1469), 1, + STATE(1625), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, + ACTIONS(1465), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, - sym__newline, + ACTIONS(1463), 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, @@ -120257,7 +123425,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, @@ -120271,94 +123438,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117795] = 20, - ACTIONS(2378), 1, + [117573] = 21, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2380), 1, + ACTIONS(2169), 1, anon_sym_LBRACK, - ACTIONS(2384), 1, - anon_sym_STAR_STAR, - ACTIONS(2386), 1, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2392), 1, - anon_sym_CARET, - ACTIONS(2396), 1, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2467), 1, - anon_sym_not, - ACTIONS(2469), 1, + ACTIONS(2352), 1, + anon_sym_STAR_STAR, + ACTIONS(2354), 1, + anon_sym_PLUS, + ACTIONS(2356), 1, + anon_sym_DASH, + ACTIONS(2360), 1, anon_sym_PIPE, - ACTIONS(2471), 1, + ACTIONS(2362), 1, anon_sym_AMP, - ACTIONS(2475), 1, + ACTIONS(2364), 1, + anon_sym_CARET, + ACTIONS(2478), 1, + anon_sym_not, + ACTIONS(2482), 1, anon_sym_is, - STATE(1739), 1, - aux_sym_comparison_operator_repeat1, - STATE(1812), 1, + STATE(1309), 1, sym_argument_list, + STATE(2228), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2382), 2, + ACTIONS(2350), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2390), 2, + ACTIONS(2358), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2394), 2, + ACTIONS(2366), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2473), 2, + ACTIONS(2480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 5, + ACTIONS(2476), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 8, - sym__newline, + ACTIONS(1321), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_DASH_GT, + anon_sym_LBRACE, anon_sym_and, anon_sym_or, - [117873] = 6, - ACTIONS(2325), 1, - anon_sym_and, - ACTIONS(2329), 1, - anon_sym_PLUS, + [117653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, + ACTIONS(1663), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 27, - sym__newline, + ACTIONS(1661), 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, @@ -120373,17 +123538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117923] = 3, + [117697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1535), 5, + ACTIONS(1669), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1533), 30, + ACTIONS(1671), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120414,29 +123579,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [117967] = 4, + [117741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 4, + ACTIONS(1665), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1225), 29, - sym__newline, + ACTIONS(1667), 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, @@ -120456,22 +123620,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118013] = 4, - ACTIONS(1245), 1, + [117785] = 4, + ACTIONS(1556), 1, anon_sym_LF, - ACTIONS(2477), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 33, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 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, @@ -120498,80 +123662,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [118059] = 20, - ACTIONS(2378), 1, - anon_sym_LPAREN, - ACTIONS(2380), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, - anon_sym_STAR_STAR, - ACTIONS(2386), 1, - anon_sym_QMARK_DOT, - ACTIONS(2392), 1, - anon_sym_CARET, - ACTIONS(2396), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2467), 1, - anon_sym_not, - ACTIONS(2469), 1, - anon_sym_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_is, - STATE(1812), 1, - sym_argument_list, - STATE(2199), 1, - aux_sym_comparison_operator_repeat1, + [117831] = 4, + STATE(1597), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2382), 2, + ACTIONS(1445), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2390), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2394), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2473), 2, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 8, - sym__newline, + ACTIONS(1443), 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, - [118137] = 5, - ACTIONS(2423), 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, + [117877] = 4, + STATE(1625), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 5, + ACTIONS(1517), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 27, + ACTIONS(1519), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120586,6 +123732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120599,185 +123746,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118185] = 21, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2378), 1, - anon_sym_LPAREN, - ACTIONS(2380), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, - anon_sym_STAR_STAR, - ACTIONS(2386), 1, - anon_sym_QMARK_DOT, - ACTIONS(2392), 1, - anon_sym_CARET, - ACTIONS(2396), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2469), 1, - anon_sym_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP, - STATE(1812), 1, - sym_argument_list, - STATE(2215), 1, + [117923] = 4, + ACTIONS(1617), 1, + anon_sym_LF, + STATE(1817), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2382), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2390), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2394), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1318), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, + ACTIONS(1619), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - [118265] = 12, - ACTIONS(2378), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2380), 1, anon_sym_LBRACK, - ACTIONS(2384), 1, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2386), 1, anon_sym_QMARK_DOT, - ACTIONS(2396), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2382), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2390), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 22, - 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_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, - [118327] = 16, - ACTIONS(2378), 1, - anon_sym_LPAREN, - ACTIONS(2380), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, - anon_sym_STAR_STAR, - ACTIONS(2386), 1, - anon_sym_QMARK_DOT, - ACTIONS(2392), 1, - anon_sym_CARET, - ACTIONS(2396), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2471), 1, - anon_sym_AMP, - STATE(1812), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [117968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2382), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 2, + ACTIONS(2504), 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(2390), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2394), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 16, - sym__newline, + anon_sym_TILDE, + sym_float, + ACTIONS(2506), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + 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_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [118397] = 5, - ACTIONS(2423), 1, - anon_sym_PLUS, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [118011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1426), 5, + ACTIONS(1524), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1424), 27, + ACTIONS(1526), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -120792,6 +123853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -120805,146 +123867,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118445] = 19, - ACTIONS(1328), 1, - anon_sym_LF, - ACTIONS(2356), 1, - anon_sym_LPAREN, - ACTIONS(2358), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_STAR_STAR, - ACTIONS(2364), 1, - anon_sym_QMARK_DOT, - ACTIONS(2368), 1, - anon_sym_PIPE, - ACTIONS(2370), 1, - anon_sym_AMP, - ACTIONS(2372), 1, - anon_sym_CARET, - ACTIONS(2376), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2454), 1, - anon_sym_not, - ACTIONS(2456), 1, - anon_sym_is, - STATE(1807), 1, - sym_argument_list, - STATE(2201), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2366), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2374), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2360), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1284), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - ACTIONS(2452), 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, - [118521] = 21, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2378), 1, + [118054] = 10, + ACTIONS(2508), 1, anon_sym_LPAREN, - ACTIONS(2380), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2384), 1, + ACTIONS(2512), 1, anon_sym_STAR_STAR, - ACTIONS(2386), 1, + ACTIONS(2514), 1, anon_sym_QMARK_DOT, - ACTIONS(2392), 1, - anon_sym_CARET, - ACTIONS(2396), 1, + ACTIONS(2516), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2469), 1, - anon_sym_PIPE, - ACTIONS(2471), 1, - anon_sym_AMP, - STATE(1812), 1, + STATE(1930), 1, sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2382), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2390), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2394), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1280), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [118601] = 4, - STATE(2212), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1530), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1532), 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, @@ -120962,75 +123914,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [118647] = 7, - ACTIONS(2419), 1, - anon_sym_and, - ACTIONS(2423), 1, - anon_sym_PLUS, + [118111] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 5, - anon_sym_STAR, + 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1440), 8, + anon_sym_TILDE, + sym_float, + ACTIONS(2520), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1465), 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, - 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, - [118699] = 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, + [118154] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 5, - anon_sym_EQ, + ACTIONS(2522), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1632), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1489), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 30, - anon_sym_DOT, + ACTIONS(1487), 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, @@ -121049,34 +123996,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118743] = 4, - STATE(1494), 1, - aux_sym_dotted_name_repeat1, + [118201] = 7, + ACTIONS(2525), 1, + anon_sym_and, + ACTIONS(2527), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 5, - anon_sym_EQ, + STATE(1661), 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(1467), 29, - sym__newline, + ACTIONS(1415), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_else, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1435), 19, 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, @@ -121091,76 +124040,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118789] = 4, - ACTIONS(1259), 1, - anon_sym_LF, - ACTIONS(2479), 1, - anon_sym_DASH_GT, - ACTIONS(5), 2, + [118252] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, + ACTIONS(2529), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - 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_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, 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, - [118835] = 7, - ACTIONS(1465), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(2531), 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, + [118295] = 3, + ACTIONS(1615), 1, anon_sym_LF, - ACTIONS(2349), 1, - anon_sym_and, - ACTIONS(2351), 1, - anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 5, + ACTIONS(1613), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1463), 25, 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, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, @@ -121178,26 +124120,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [118887] = 4, - STATE(1580), 1, + [118338] = 4, + STATE(1637), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1461), 5, + ACTIONS(1459), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1459), 29, - sym__newline, + ACTIONS(1461), 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, @@ -121220,30 +124161,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118933] = 4, + [118383] = 5, + STATE(1637), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1470), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1376), 4, + ACTIONS(2533), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1475), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1378), 29, - sym__newline, - anon_sym_DOT, + ACTIONS(1473), 26, 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, @@ -121262,27 +124203,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [118979] = 4, - STATE(1469), 1, - aux_sym_union_type_repeat1, + [118430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1243), 5, + ACTIONS(1501), 6, anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1241), 29, - sym__newline, + ACTIONS(1503), 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, @@ -121290,7 +124230,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, @@ -121304,27 +124243,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119025] = 4, - ACTIONS(2481), 1, - anon_sym_DASH_GT, + [118473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, + ACTIONS(2536), 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(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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [118516] = 5, + ACTIONS(2540), 1, anon_sym_EQ, + STATE(1762), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1465), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 28, - sym__newline, + ACTIONS(1463), 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, @@ -121333,6 +124311,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, @@ -121346,61 +124325,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119071] = 4, + [118563] = 21, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2508), 1, + anon_sym_LPAREN, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2512), 1, + anon_sym_STAR_STAR, + ACTIONS(2514), 1, + anon_sym_QMARK_DOT, + ACTIONS(2516), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2548), 1, + anon_sym_PIPE, + ACTIONS(2550), 1, + anon_sym_AMP, + ACTIONS(2552), 1, + anon_sym_CARET, + STATE(1930), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1271), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1447), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1269), 29, - sym__newline, + ACTIONS(2542), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2546), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1321), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [118642] = 21, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2508), 1, anon_sym_LPAREN, + ACTIONS(2510), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2512), 1, anon_sym_STAR_STAR, + ACTIONS(2514), 1, anon_sym_QMARK_DOT, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2516), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2548), 1, + anon_sym_PIPE, + ACTIONS(2550), 1, + anon_sym_AMP, + ACTIONS(2552), 1, + anon_sym_CARET, + STATE(1930), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1515), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2542), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2544), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2546), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2554), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 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, - [119117] = 4, - STATE(1469), 1, - aux_sym_union_type_repeat1, + [118721] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 5, - anon_sym_EQ, + ACTIONS(1817), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 29, + ACTIONS(1819), 30, sym__newline, anon_sym_DOT, anon_sym_as, @@ -121409,6 +124459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -121430,88 +124481,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119163] = 5, - ACTIONS(1273), 1, - anon_sym_LF, - ACTIONS(2483), 1, - anon_sym_PIPE, - STATE(1589), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, + [118764] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 32, + ACTIONS(2556), 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(2558), 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, + [118807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2560), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, - 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_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, + anon_sym_DQUOTE, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - 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, - [119211] = 10, - ACTIONS(2161), 1, + anon_sym_TILDE, + sym_float, + ACTIONS(2562), 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, + [118850] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2564), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2163), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS, + 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, + [118893] = 5, + ACTIONS(2568), 1, + anon_sym_PIPE, + STATE(1647), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1372), 5, + ACTIONS(1517), 5, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1374), 23, + ACTIONS(1519), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + 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, @@ -121521,34 +124642,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [119269] = 3, + anon_sym_QMARK_LBRACK, + [118940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1531), 5, - anon_sym_EQ, + ACTIONS(2571), 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(2573), 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, + [118983] = 4, + STATE(1788), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1605), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1529), 30, + ACTIONS(1607), 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, @@ -121562,35 +124724,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119313] = 4, - STATE(2193), 1, - aux_sym_comparison_operator_repeat1, + [119028] = 4, + ACTIONS(2502), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1465), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1463), 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, @@ -121604,137 +124765,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119359] = 13, - ACTIONS(2378), 1, - anon_sym_LPAREN, - ACTIONS(2380), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, - anon_sym_STAR_STAR, - ACTIONS(2386), 1, - anon_sym_QMARK_DOT, - ACTIONS(2396), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [119073] = 3, + ACTIONS(1599), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2382), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2390), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 20, - sym__newline, + ACTIONS(1597), 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, - [119423] = 21, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2333), 1, - anon_sym_STAR_STAR, - ACTIONS(2335), 1, - anon_sym_PLUS, - ACTIONS(2337), 1, - anon_sym_DASH, - ACTIONS(2341), 1, - anon_sym_PIPE, - ACTIONS(2343), 1, - anon_sym_AMP, - ACTIONS(2345), 1, - anon_sym_CARET, - ACTIONS(2436), 1, - anon_sym_not, - ACTIONS(2440), 1, - anon_sym_is, - STATE(1282), 1, - sym_argument_list, - STATE(1715), 1, + [119116] = 4, + ACTIONS(1607), 1, + anon_sym_LF, + STATE(1807), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2331), 2, + ACTIONS(1605), 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, - 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(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, - ACTIONS(1328), 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, - [119503] = 4, + anon_sym_GT, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [119161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 4, + ACTIONS(1534), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1225), 29, - sym__newline, + ACTIONS(1536), 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, @@ -121742,7 +124873,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, @@ -121756,38 +124886,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119549] = 7, - ACTIONS(2419), 1, - anon_sym_and, - ACTIONS(2423), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + [119204] = 3, + ACTIONS(1667), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 5, + ACTIONS(1665), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1463), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1465), 21, 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, @@ -121795,42 +124918,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, - [119601] = 5, - ACTIONS(2486), 1, - anon_sym_EQ, - STATE(1508), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [119247] = 3, + ACTIONS(1671), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1394), 28, + ACTIONS(1669), 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, @@ -121838,39 +124958,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, - [119649] = 6, - ACTIONS(1440), 1, + [119290] = 3, + ACTIONS(1661), 1, anon_sym_LF, - ACTIONS(2349), 1, - anon_sym_and, - ACTIONS(2351), 1, - anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 30, + ACTIONS(1663), 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, 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, @@ -121888,22 +125006,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [119699] = 4, - ACTIONS(1263), 1, + [119333] = 3, + ACTIONS(1685), 1, anon_sym_LF, - ACTIONS(2488), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 33, + ACTIONS(1687), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -121930,89 +125046,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [119745] = 14, - ACTIONS(2378), 1, - anon_sym_LPAREN, - ACTIONS(2380), 1, - anon_sym_LBRACK, - ACTIONS(2384), 1, - anon_sym_STAR_STAR, - ACTIONS(2386), 1, - anon_sym_QMARK_DOT, - ACTIONS(2396), 1, - anon_sym_QMARK_LBRACK, - STATE(1812), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [119376] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2382), 2, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1562), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2390), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2394), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 18, - sym__newline, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1560), 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, + 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, - [119811] = 6, - ACTIONS(2419), 1, - anon_sym_and, - ACTIONS(2423), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [119421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 5, + ACTIONS(1605), 6, + anon_sym_EQ, anon_sym_STAR, - anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 26, + ACTIONS(1607), 28, 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_RBRACE, 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, @@ -122026,78 +125127,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119861] = 21, - ACTIONS(2038), 1, + [119464] = 21, + ACTIONS(2066), 1, anon_sym_not, - ACTIONS(2054), 1, + ACTIONS(2070), 1, anon_sym_is, - ACTIONS(2378), 1, + ACTIONS(2508), 1, anon_sym_LPAREN, - ACTIONS(2380), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2384), 1, + ACTIONS(2512), 1, anon_sym_STAR_STAR, - ACTIONS(2386), 1, + ACTIONS(2514), 1, anon_sym_QMARK_DOT, - ACTIONS(2392), 1, - anon_sym_CARET, - ACTIONS(2396), 1, + ACTIONS(2516), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2469), 1, + ACTIONS(2548), 1, anon_sym_PIPE, - ACTIONS(2471), 1, + ACTIONS(2550), 1, anon_sym_AMP, - STATE(1812), 1, + ACTIONS(2552), 1, + anon_sym_CARET, + STATE(1930), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2382), 2, + ACTIONS(1511), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2542), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2388), 2, + ACTIONS(2544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2390), 2, + ACTIONS(2546), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2394), 2, + ACTIONS(2554), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1402), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, + ACTIONS(1321), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - [119941] = 4, + ACTIONS(1455), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [119543] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1695), 2, + STATE(1632), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1376), 4, + ACTIONS(1439), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1378), 28, + ACTIONS(1437), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -122126,90 +125226,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [119986] = 21, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2490), 1, + [119588] = 4, + ACTIONS(2495), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1465), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1463), 29, + sym__newline, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2492), 1, anon_sym_LBRACK, - ACTIONS(2496), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2498), 1, anon_sym_QMARK_DOT, - ACTIONS(2504), 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(2506), 1, anon_sym_AMP, - ACTIONS(2508), 1, anon_sym_CARET, - ACTIONS(2512), 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(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [119633] = 4, + STATE(1517), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1280), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2494), 2, + ACTIONS(1655), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2500), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1653), 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, - ACTIONS(2502), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2510), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [120065] = 4, - ACTIONS(1599), 1, - anon_sym_LF, - STATE(2204), 1, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [119678] = 8, + ACTIONS(2578), 1, + anon_sym_not, + ACTIONS(2584), 1, + anon_sym_is, + STATE(1664), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 32, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2581), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2575), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 22, + 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, @@ -122217,33 +125352,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, - [120110] = 4, - STATE(1694), 1, - aux_sym_union_type_repeat1, + [119731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 5, + ACTIONS(1621), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 28, + ACTIONS(1623), 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, @@ -122266,11 +125393,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120155] = 3, + [119774] = 20, + ACTIONS(2508), 1, + anon_sym_LPAREN, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2512), 1, + anon_sym_STAR_STAR, + ACTIONS(2514), 1, + anon_sym_QMARK_DOT, + ACTIONS(2516), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2548), 1, + anon_sym_PIPE, + ACTIONS(2550), 1, + anon_sym_AMP, + ACTIONS(2552), 1, + anon_sym_CARET, + ACTIONS(2589), 1, + anon_sym_not, + ACTIONS(2593), 1, + anon_sym_is, + STATE(1869), 1, + aux_sym_comparison_operator_repeat1, + STATE(1930), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2542), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2546), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2591), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2587), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1321), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_or, + [119851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 12, + ACTIONS(2595), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -122283,7 +125467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2516), 22, + ACTIONS(2597), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -122306,34 +125490,35 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [120198] = 4, - ACTIONS(2518), 1, - anon_sym_DASH_GT, + [119894] = 5, + ACTIONS(2599), 1, + anon_sym_in, + ACTIONS(2601), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, - anon_sym_EQ, + ACTIONS(1605), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 27, + ACTIONS(1607), 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, anon_sym_PIPE, @@ -122347,26 +125532,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120243] = 4, - STATE(1694), 1, - aux_sym_union_type_repeat1, + [119941] = 4, + STATE(2226), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 5, - anon_sym_EQ, + ACTIONS(1605), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1414), 28, + ACTIONS(1607), 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, @@ -122374,7 +125560,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, @@ -122388,20 +125573,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120288] = 4, + [119986] = 10, + ACTIONS(2508), 1, + anon_sym_LPAREN, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2512), 1, + anon_sym_STAR_STAR, + ACTIONS(2514), 1, + anon_sym_QMARK_DOT, + ACTIONS(2516), 1, + anon_sym_QMARK_LBRACK, + STATE(1930), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1427), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1425), 23, + 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_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, + [120043] = 8, + ACTIONS(2525), 1, + anon_sym_and, + ACTIONS(2527), 1, + anon_sym_PLUS, + ACTIONS(2603), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, + ACTIONS(778), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1271), 4, + ACTIONS(1299), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1269), 28, - anon_sym_DOT, + ACTIONS(1301), 23, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -122410,6 +125650,42 @@ static const uint16_t ts_small_parse_table[] = { 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, + [120096] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1743), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1745), 30, + 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_LBRACE, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -122429,72 +125705,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120333] = 3, + [120139] = 13, + ACTIONS(2508), 1, + anon_sym_LPAREN, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2512), 1, + anon_sym_STAR_STAR, + ACTIONS(2514), 1, + anon_sym_QMARK_DOT, + ACTIONS(2516), 1, + anon_sym_QMARK_LBRACK, + STATE(1930), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1261), 6, - anon_sym_EQ, + ACTIONS(1530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2542), 2, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, + ACTIONS(2544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2546), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 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, + 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, + [120202] = 14, + ACTIONS(2508), 1, + anon_sym_LPAREN, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2512), 1, + anon_sym_STAR_STAR, + ACTIONS(2514), 1, + anon_sym_QMARK_DOT, + ACTIONS(2516), 1, + anon_sym_QMARK_LBRACK, + STATE(1930), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1259), 28, + ACTIONS(2542), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2546), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 17, 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_RPAREN, 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, - anon_sym_QMARK_LBRACK, - [120376] = 10, - ACTIONS(2520), 1, - anon_sym_as, - ACTIONS(2522), 1, - anon_sym_if, - ACTIONS(2524), 1, + [120267] = 10, + ACTIONS(2525), 1, anon_sym_and, - ACTIONS(2526), 1, - anon_sym_or, - ACTIONS(2528), 1, + ACTIONS(2527), 1, anon_sym_PLUS, + ACTIONS(2603), 1, + anon_sym_or, + ACTIONS(2605), 1, + anon_sym_as, + ACTIONS(2607), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1493), 4, + ACTIONS(1285), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 21, + ACTIONS(1291), 21, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122516,26 +125853,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120433] = 4, - STATE(1694), 1, + [120324] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2609), 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(2611), 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, + [120367] = 4, + STATE(1625), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1243), 5, - anon_sym_EQ, + ACTIONS(1655), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1241), 28, + ACTIONS(1653), 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, @@ -122543,7 +125921,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, @@ -122557,11 +125934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120478] = 3, + [120412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 12, + ACTIONS(2613), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -122574,7 +125951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2532), 22, + ACTIONS(2615), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -122597,11 +125974,63 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [120521] = 3, + [120455] = 15, + ACTIONS(2508), 1, + anon_sym_LPAREN, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2512), 1, + anon_sym_STAR_STAR, + ACTIONS(2514), 1, + anon_sym_QMARK_DOT, + ACTIONS(2516), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2552), 1, + anon_sym_CARET, + STATE(1930), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2542), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2546), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 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, + [120522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 12, + ACTIONS(2617), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -122614,7 +126043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2536), 22, + ACTIONS(2619), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -122637,33 +126066,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [120564] = 3, + [120565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, - anon_sym_EQ, + ACTIONS(1853), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1263), 28, + ACTIONS(1855), 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, @@ -122677,28 +126106,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120607] = 8, - ACTIONS(2524), 1, - anon_sym_and, - ACTIONS(2526), 1, - anon_sym_or, - ACTIONS(2528), 1, - anon_sym_PLUS, + [120608] = 5, + ACTIONS(2621), 1, + anon_sym_LBRACE, + STATE(2010), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 23, + ACTIONS(1607), 28, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, @@ -122707,7 +126129,11 @@ 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, @@ -122722,56 +126148,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120660] = 20, - ACTIONS(2490), 1, + [120655] = 16, + ACTIONS(2508), 1, anon_sym_LPAREN, - ACTIONS(2492), 1, + ACTIONS(2510), 1, anon_sym_LBRACK, - ACTIONS(2496), 1, + ACTIONS(2512), 1, anon_sym_STAR_STAR, - ACTIONS(2498), 1, + ACTIONS(2514), 1, anon_sym_QMARK_DOT, - ACTIONS(2504), 1, - anon_sym_PIPE, - ACTIONS(2506), 1, + ACTIONS(2516), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2550), 1, anon_sym_AMP, + ACTIONS(2552), 1, + anon_sym_CARET, + STATE(1930), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2542), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2544), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2546), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2554), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 15, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + [120724] = 12, ACTIONS(2508), 1, + anon_sym_LPAREN, + ACTIONS(2510), 1, + anon_sym_LBRACK, + ACTIONS(2512), 1, + anon_sym_STAR_STAR, + ACTIONS(2514), 1, + anon_sym_QMARK_DOT, + ACTIONS(2516), 1, + anon_sym_QMARK_LBRACK, + STATE(1930), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2542), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2546), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 21, + 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_PLUS, + anon_sym_DASH, + 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, + [120785] = 20, + ACTIONS(2508), 1, + anon_sym_LPAREN, + ACTIONS(2510), 1, + anon_sym_LBRACK, ACTIONS(2512), 1, + anon_sym_STAR_STAR, + ACTIONS(2514), 1, + anon_sym_QMARK_DOT, + ACTIONS(2516), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2548), 1, + anon_sym_PIPE, + ACTIONS(2550), 1, + anon_sym_AMP, + ACTIONS(2552), 1, + anon_sym_CARET, + ACTIONS(2589), 1, anon_sym_not, - ACTIONS(2544), 1, + ACTIONS(2593), 1, anon_sym_is, - STATE(1903), 1, - aux_sym_comparison_operator_repeat1, - STATE(1950), 1, + STATE(1930), 1, sym_argument_list, + STATE(2237), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2494), 2, + ACTIONS(2542), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2500), 2, + ACTIONS(2544), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2502), 2, + ACTIONS(2546), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2510), 2, + ACTIONS(2554), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2542), 2, + ACTIONS(2591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 5, + ACTIONS(2587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 7, + ACTIONS(1321), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -122779,34 +126307,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_and, anon_sym_or, - [120737] = 5, - ACTIONS(2528), 1, - anon_sym_PLUS, + [120862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1426), 4, + ACTIONS(1857), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1424), 27, + ACTIONS(1859), 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, @@ -122821,33 +126347,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120784] = 3, + [120905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 6, - anon_sym_EQ, + ACTIONS(1861), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1245), 28, + ACTIONS(1863), 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, @@ -122861,30 +126387,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120827] = 5, - STATE(1621), 1, - aux_sym_dotted_name_repeat1, + [120948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2546), 2, + ACTIONS(1865), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1867), 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, - ACTIONS(1382), 5, + 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, + [120991] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1659), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1380), 26, + ACTIONS(1657), 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, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -122903,21 +126467,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120874] = 5, - ACTIONS(2528), 1, + [121034] = 6, + ACTIONS(2525), 1, + anon_sym_and, + ACTIONS(2527), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, + ACTIONS(1497), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 27, + ACTIONS(1499), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -122929,7 +126495,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_DASH, anon_sym_PERCENT, @@ -122945,28 +126510,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120921] = 5, - ACTIONS(2549), 1, - anon_sym_PIPE, - STATE(1623), 1, - aux_sym_union_type_repeat1, + [121083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 5, - anon_sym_EQ, + ACTIONS(1735), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1273), 27, + ACTIONS(1737), 30, + 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_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -122977,6 +126539,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, @@ -122987,16 +126550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [120968] = 3, + [121126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, + ACTIONS(1869), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 30, + ACTIONS(1871), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -123027,13 +126590,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121011] = 3, + [121169] = 3, + ACTIONS(1623), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1621), 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, + 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, + [121212] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 12, + ACTIONS(2564), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -123044,7 +126647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2554), 22, + ACTIONS(2566), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -123067,27 +126670,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [121054] = 3, + [121255] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, + ACTIONS(1675), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 30, + ACTIONS(1673), 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, @@ -123107,27 +126710,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121097] = 3, + [121298] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 30, + ACTIONS(1556), 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, @@ -123147,56 +126751,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121140] = 3, + [121343] = 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(1757), 30, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2625), 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, - [121183] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2623), 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, + [121386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 4, + ACTIONS(1873), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 30, + ACTIONS(1875), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -123227,34 +126831,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121226] = 4, - ACTIONS(2486), 1, - anon_sym_EQ, + [121429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 5, + ACTIONS(1697), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 28, + ACTIONS(1699), 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, @@ -123268,13 +126871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121271] = 3, + [121472] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2556), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -123308,67 +126911,108 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [121314] = 3, + [121515] = 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(1765), 30, + ACTIONS(2536), 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(2538), 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, + [121558] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2627), 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, - [121357] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2629), 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, + [121601] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 4, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1554), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 30, + ACTIONS(1556), 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, @@ -123388,27 +127032,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121400] = 3, + [121646] = 4, + STATE(2233), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1775), 30, + ACTIONS(1607), 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, @@ -123428,16 +127073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121443] = 3, + [121691] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 4, + ACTIONS(1701), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1779), 30, + ACTIONS(1703), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -123468,107 +127113,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121486] = 3, + [121734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 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(2518), 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, - [121529] = 3, + 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, + [121777] = 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(1787), 30, + ACTIONS(2560), 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(2562), 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, + [121820] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2571), 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, - [121572] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2573), 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, + [121863] = 4, + STATE(1664), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 4, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1787), 30, + ACTIONS(1617), 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, @@ -123588,16 +127274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121615] = 3, + [121908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 4, + ACTIONS(1705), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 30, + ACTIONS(1707), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -123628,75 +127314,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121658] = 3, + [121951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1525), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1523), 29, - sym__newline, + ACTIONS(2595), 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(2597), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_COMMA, - 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, + [121994] = 10, + ACTIONS(2508), 1, anon_sym_LPAREN, + ACTIONS(2510), 1, anon_sym_LBRACK, - anon_sym_in, + ACTIONS(2512), 1, anon_sym_STAR_STAR, + ACTIONS(2514), 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, - 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, + ACTIONS(2516), 1, anon_sym_QMARK_LBRACK, - [121701] = 6, - ACTIONS(2524), 1, - anon_sym_and, - ACTIONS(2528), 1, - anon_sym_PLUS, + STATE(1930), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1253), 4, + ACTIONS(1530), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 26, + ACTIONS(1532), 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, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -123710,114 +127401,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [121750] = 3, + [122051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1803), 30, + ACTIONS(2633), 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(2631), 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, + [122094] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2633), 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, - [121793] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2631), 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, + [122137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1807), 30, + ACTIONS(2609), 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(2611), 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, + [122180] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2613), 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, - [121836] = 3, + anon_sym_TILDE, + sym_float, + ACTIONS(2615), 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, + [122223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1807), 30, + ACTIONS(2617), 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(2619), 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, + [122266] = 3, + ACTIONS(1821), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1823), 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_LBRACE, + 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, @@ -123825,39 +127633,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, - [121879] = 3, - ACTIONS(3), 2, + [122309] = 3, + ACTIONS(1745), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1811), 30, + ACTIONS(1743), 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_LBRACE, + 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, @@ -123865,22 +127673,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, - [121922] = 3, + [122352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 4, + ACTIONS(1713), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 30, + ACTIONS(1715), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -123911,35 +127721,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [121965] = 5, - ACTIONS(2528), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + [122395] = 3, + ACTIONS(1657), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1444), 27, + ACTIONS(1659), 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, 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, @@ -123947,22 +127753,104 @@ 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, - [122012] = 3, + [122438] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 4, + ACTIONS(2627), 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(2629), 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, + [122481] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2635), 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(2637), 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, + [122524] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1729), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 30, + ACTIONS(1731), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -123993,17 +127881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122055] = 3, + [122567] = 4, + STATE(1831), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1531), 5, - anon_sym_EQ, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1529), 29, + ACTIONS(1607), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -124033,27 +127922,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122098] = 4, - ACTIONS(3), 2, + [122612] = 3, + ACTIONS(1737), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1225), 28, + ACTIONS(1735), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -124061,6 +127946,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, @@ -124068,33 +127954,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, - [122143] = 4, - ACTIONS(3), 2, + [122655] = 3, + ACTIONS(1677), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1223), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1225), 28, + ACTIONS(1679), 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, @@ -124102,6 +127986,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, @@ -124109,39 +127994,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, - [122188] = 3, - ACTIONS(3), 2, + [122698] = 4, + ACTIONS(1607), 1, + anon_sym_LF, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1841), 30, + ACTIONS(1605), 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, @@ -124149,22 +128035,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, - [122231] = 3, + [122743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 4, + ACTIONS(1729), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1845), 30, + ACTIONS(1731), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -124195,134 +128083,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122274] = 16, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, - anon_sym_QMARK_DOT, - ACTIONS(2506), 1, - anon_sym_AMP, - ACTIONS(2508), 1, - anon_sym_CARET, - ACTIONS(2512), 1, - anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + [122786] = 3, + ACTIONS(1673), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2494), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2500), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2502), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 15, + ACTIONS(1675), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + 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, - [122343] = 21, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, - anon_sym_QMARK_DOT, - ACTIONS(2504), 1, - anon_sym_PIPE, - ACTIONS(2506), 1, - anon_sym_AMP, - ACTIONS(2508), 1, - anon_sym_CARET, - ACTIONS(2512), 1, anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [122829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1318), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2494), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2500), 2, + ACTIONS(2635), 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, - ACTIONS(2502), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, + anon_sym_TILDE, + sym_float, + ACTIONS(2637), 22, + anon_sym_import, anon_sym_DOT, - anon_sym_as, + anon_sym_assert, anon_sym_if, - anon_sym_and, - anon_sym_or, - [122422] = 3, - ACTIONS(1595), 1, - anon_sym_LF, - ACTIONS(5), 2, + 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, + [122872] = 4, + STATE(1636), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 33, + ACTIONS(1469), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 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, @@ -124330,7 +128191,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, @@ -124338,24 +128198,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, - [122465] = 3, + [122917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 30, + ACTIONS(1607), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -124386,30 +128244,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122508] = 4, - STATE(1694), 1, - aux_sym_union_type_repeat1, + [122960] = 5, + ACTIONS(2141), 1, + anon_sym_in, + ACTIONS(2143), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1275), 5, - anon_sym_EQ, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1273), 28, + ACTIONS(1607), 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, @@ -124427,20 +128286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122553] = 5, - ACTIONS(2130), 1, - anon_sym_in, - ACTIONS(2132), 1, - anon_sym_not, + [123007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1319), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1321), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -124449,9 +128304,11 @@ 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, @@ -124469,27 +128326,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122600] = 3, + [123050] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2504), 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(2506), 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, + [123093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 4, + ACTIONS(1613), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 30, + ACTIONS(1615), 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, @@ -124509,27 +128406,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122643] = 3, + [123136] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2641), 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(2639), 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, + [123179] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2641), 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(2639), 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, + [123222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 4, + ACTIONS(1475), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1857), 30, + ACTIONS(1473), 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, @@ -124549,16 +128526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122686] = 3, + [123265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 30, + ACTIONS(1607), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -124589,34 +128566,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [122729] = 4, - ACTIONS(2560), 1, - anon_sym_DASH_GT, + [123308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1265), 6, - anon_sym_EQ, - anon_sym_STAR, + ACTIONS(2643), 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_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1263), 27, + anon_sym_TILDE, + sym_float, + ACTIONS(2645), 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, + [123351] = 3, + ACTIONS(1609), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1611), 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, 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, @@ -124624,19 +128638,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, - [122774] = 3, - ACTIONS(1591), 1, + [123394] = 3, + ACTIONS(1601), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 33, + ACTIONS(1603), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -124670,31 +128686,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [122817] = 3, - ACTIONS(1587), 1, - anon_sym_LF, - ACTIONS(5), 2, + [123437] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2647), 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(2649), 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, + [123480] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 33, + ACTIONS(1695), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1693), 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, @@ -124702,39 +128760,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, - [122860] = 3, - ACTIONS(1583), 1, - anon_sym_LF, - ACTIONS(5), 2, + [123523] = 4, + ACTIONS(2651), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1585), 33, + ACTIONS(1534), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1536), 27, 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, 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, @@ -124742,39 +128801,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, - [122903] = 3, - ACTIONS(1579), 1, - anon_sym_LF, - ACTIONS(5), 2, + [123568] = 5, + ACTIONS(2599), 1, + anon_sym_in, + ACTIONS(2653), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 33, + ACTIONS(1605), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 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, @@ -124782,21 +128843,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, - [122946] = 3, + [123615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2562), 12, + ACTIONS(2657), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -124807,7 +128866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2564), 22, + ACTIONS(2655), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -124830,46 +128889,155 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [122989] = 13, - ACTIONS(2490), 1, + [123658] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2661), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2492), 1, anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2512), 1, - anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + 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, + [123701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2494), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2500), 2, + ACTIONS(2665), 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, - ACTIONS(2502), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 19, + anon_sym_TILDE, + sym_float, + ACTIONS(2663), 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, + [123744] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2669), 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(2667), 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, + [123787] = 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), 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, @@ -124880,27 +129048,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [123052] = 3, + anon_sym_QMARK_LBRACK, + [123830] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2671), 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(2673), 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, + [123873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 4, + ACTIONS(1687), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1869), 30, + ACTIONS(1685), 30, + 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_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -124920,16 +129129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123095] = 3, + [123916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 4, + ACTIONS(1763), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1865), 30, + ACTIONS(1765), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -124960,131 +129169,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123138] = 14, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, - anon_sym_QMARK_DOT, - ACTIONS(2512), 1, - anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [123959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2494), 2, + ACTIONS(1763), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2500), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2502), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1765), 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, - [123203] = 15, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, - anon_sym_QMARK_DOT, - ACTIONS(2508), 1, - anon_sym_CARET, - ACTIONS(2512), 1, anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [124002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2494), 2, + ACTIONS(1719), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2500), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2502), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1717), 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, - [123270] = 4, - ACTIONS(2463), 1, - anon_sym_EQ, + anon_sym_QMARK_LBRACK, + [124045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, + ACTIONS(1787), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 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, @@ -125104,27 +129289,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123315] = 3, + [124088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1535), 5, - anon_sym_EQ, + ACTIONS(1723), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1533), 29, - sym__newline, + ACTIONS(1721), 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, @@ -125144,97 +129329,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123358] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2566), 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(2568), 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, - [123401] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2570), 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(2572), 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, - [123444] = 3, + [124131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1541), 5, + ACTIONS(1597), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 29, + ACTIONS(1599), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -125264,83 +129369,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123487] = 21, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, - anon_sym_QMARK_DOT, - ACTIONS(2504), 1, - anon_sym_PIPE, - ACTIONS(2506), 1, - anon_sym_AMP, - ACTIONS(2508), 1, - anon_sym_CARET, - ACTIONS(2512), 1, - anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1402), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2494), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2500), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2502), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [123566] = 4, - STATE(1469), 1, + [124174] = 4, + STATE(1647), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1561), 4, + ACTIONS(1445), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1559), 29, - sym__newline, + ACTIONS(1443), 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, @@ -125363,21 +129410,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123611] = 3, + [124219] = 4, + STATE(2841), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 30, + ACTIONS(1607), 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, @@ -125403,13 +129451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123654] = 3, + [124264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2574), 12, + ACTIONS(2677), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -125420,7 +129468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2576), 22, + ACTIONS(2675), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -125429,99 +129477,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - [123697] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1837), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1835), 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, - anon_sym_QMARK_LBRACK, - [123740] = 12, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, - anon_sym_QMARK_DOT, - ACTIONS(2512), 1, - anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + 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, + [124307] = 4, + STATE(1305), 1, + sym_dictionary, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2494), 2, + ACTIONS(1605), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2502), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, + 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, @@ -125532,27 +129531,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [123801] = 3, + anon_sym_QMARK_LBRACK, + [124352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 4, + ACTIONS(1823), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1831), 30, + ACTIONS(1821), 30, + 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_LBRACE, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_for, anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, @@ -125572,16 +129572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123844] = 3, + [124395] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 4, + ACTIONS(1799), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 30, + ACTIONS(1801), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125612,33 +129612,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123887] = 3, + [124438] = 4, + ACTIONS(2679), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, + ACTIONS(1524), 6, + anon_sym_EQ, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 30, + ACTIONS(1526), 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, @@ -125652,23 +129653,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [123930] = 3, - ACTIONS(1569), 1, - anon_sym_LF, - ACTIONS(5), 2, + [124483] = 4, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 33, + ACTIONS(1605), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 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, @@ -125676,7 +129681,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, @@ -125684,23 +129688,61 @@ 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, - [123973] = 4, - ACTIONS(1599), 1, + [124528] = 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(2655), 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, + [124571] = 4, + ACTIONS(1607), 1, anon_sym_LF, - STATE(2212), 1, + STATE(2231), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 32, + ACTIONS(1605), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125733,83 +129775,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [124018] = 10, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, - anon_sym_QMARK_DOT, - ACTIONS(2512), 1, - anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [124616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1322), 23, - 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_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, - [124075] = 10, - ACTIONS(2490), 1, + ACTIONS(2661), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2492), 1, anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, + anon_sym_LBRACE, + anon_sym_AT, anon_sym_QMARK_DOT, - ACTIONS(2512), 1, - anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + 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, + [124659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 4, + ACTIONS(1727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1322), 23, + ACTIONS(1725), 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, @@ -125827,13 +129854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [124132] = 3, - ACTIONS(1565), 1, + anon_sym_QMARK_LBRACK, + [124702] = 3, + ACTIONS(1473), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 33, + ACTIONS(1475), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -125867,27 +129895,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [124175] = 3, + [124745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 4, + ACTIONS(1665), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 30, + ACTIONS(1667), 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, @@ -125907,25 +129935,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124218] = 4, - STATE(1623), 1, - aux_sym_union_type_repeat1, + [124788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1390), 5, + ACTIONS(1669), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1392), 28, + ACTIONS(1671), 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, @@ -125948,30 +129975,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124263] = 5, + [124831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2578), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1695), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1364), 4, + ACTIONS(1663), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1362), 26, + ACTIONS(1661), 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, + anon_sym_QMARK_DOT, anon_sym_not, anon_sym_and, anon_sym_or, @@ -125990,34 +130015,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124310] = 4, - ACTIONS(2581), 1, - anon_sym_DASH_GT, + [124874] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 6, - anon_sym_EQ, + ACTIONS(1739), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1245), 27, + ACTIONS(1741), 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, @@ -126031,23 +130055,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124355] = 3, - ACTIONS(1380), 1, - anon_sym_LF, - ACTIONS(5), 2, + [124917] = 4, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1382), 33, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1546), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1548), 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, @@ -126055,7 +130083,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, @@ -126063,50 +130090,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, - [124398] = 8, - ACTIONS(2586), 1, - anon_sym_not, - ACTIONS(2592), 1, - anon_sym_is, - STATE(1698), 1, - aux_sym_comparison_operator_repeat1, + [124962] = 5, + ACTIONS(2527), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 2, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1409), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2589), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2583), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1543), 22, - sym__newline, + ACTIONS(1411), 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, 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, @@ -126115,37 +130132,40 @@ 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, - [124451] = 7, - ACTIONS(2524), 1, - anon_sym_and, - ACTIONS(2528), 1, + [125009] = 5, + ACTIONS(2527), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + ACTIONS(1413), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 7, + ACTIONS(1415), 27, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1465), 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_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -126160,16 +130180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124502] = 3, + [125056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 4, + ACTIONS(1747), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 30, + ACTIONS(1749), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -126200,52 +130220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124545] = 4, - ACTIONS(1394), 1, - anon_sym_LF, - ACTIONS(2450), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1396), 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, - [124590] = 3, + [125099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2597), 12, + ACTIONS(2671), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -126258,7 +130237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2595), 22, + ACTIONS(2673), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126281,114 +130260,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124633] = 4, - ACTIONS(1559), 1, - anon_sym_LF, - STATE(1544), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 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, - [124678] = 7, - ACTIONS(1543), 1, - anon_sym_LF, - ACTIONS(2602), 1, - anon_sym_not, - ACTIONS(2605), 1, - anon_sym_is, - STATE(1704), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2599), 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(1545), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_QMARK_DOT, - 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_QMARK_LBRACK, - [124729] = 5, - ACTIONS(2608), 1, - anon_sym_EQ, - STATE(1694), 1, - aux_sym_union_type_repeat1, + [125142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, + ACTIONS(1755), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 28, + ACTIONS(1757), 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, @@ -126408,11 +130300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [124776] = 3, + [125185] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2610), 12, + ACTIONS(2677), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -126425,7 +130317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2612), 22, + ACTIONS(2675), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126448,153 +130340,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [124819] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1382), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1380), 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, - [124862] = 4, - STATE(1722), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1663), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1665), 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, - anon_sym_QMARK_LBRACK, - [124907] = 4, - STATE(1722), 1, - aux_sym_comparison_operator_repeat1, + [125228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 5, + ACTIONS(1767), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 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, - anon_sym_QMARK_LBRACK, - [124952] = 3, - ACTIONS(1539), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1541), 33, + ACTIONS(1769), 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_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, @@ -126602,39 +130374,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, - [124995] = 3, - ACTIONS(1533), 1, - anon_sym_LF, - ACTIONS(5), 2, + [125271] = 4, + STATE(1802), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1535), 33, + ACTIONS(1619), 5, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 28, 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_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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -126642,27 +130415,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, - [125038] = 4, - STATE(1722), 1, + [125316] = 4, + STATE(1802), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 5, + ACTIONS(1619), 5, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 28, + ACTIONS(1617), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -126691,13 +130462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125083] = 3, + [125361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2614), 12, + ACTIONS(2647), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -126708,7 +130479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2616), 22, + ACTIONS(2649), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126731,13 +130502,13 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [125126] = 3, + [125404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2618), 12, + ACTIONS(2643), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -126748,7 +130519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2620), 22, + ACTIONS(2645), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -126771,34 +130542,33 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [125169] = 4, - STATE(1722), 1, - aux_sym_comparison_operator_repeat1, + [125447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 5, + ACTIONS(1771), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 28, + ACTIONS(1773), 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, @@ -126812,56 +130582,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125214] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2624), 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(2622), 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, - [125257] = 3, + [125490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 4, + ACTIONS(1775), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 30, + ACTIONS(1777), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -126892,34 +130622,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125300] = 4, - STATE(1508), 1, - aux_sym_union_type_repeat1, + [125533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1561), 5, + ACTIONS(1779), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1559), 28, + 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_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, @@ -126933,36 +130662,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125345] = 10, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, - anon_sym_QMARK_DOT, - ACTIONS(2512), 1, - anon_sym_QMARK_LBRACK, - STATE(1950), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [125576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1372), 4, + ACTIONS(1805), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1374), 23, + ACTIONS(1807), 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, @@ -126980,36 +130701,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [125402] = 7, - ACTIONS(2524), 1, - anon_sym_and, - ACTIONS(2528), 1, - anon_sym_PLUS, + anon_sym_QMARK_LBRACK, + [125619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + ACTIONS(1679), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 5, + ACTIONS(1677), 29, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1465), 21, 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, @@ -127024,83 +130742,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125453] = 3, + [125662] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2626), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1791), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1793), 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(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, - [125496] = 8, - ACTIONS(2633), 1, - anon_sym_not, - ACTIONS(2639), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_is, - STATE(1722), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_LBRACK, + [125705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2636), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1545), 3, + ACTIONS(1795), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, - ACTIONS(2630), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1543), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1797), 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, @@ -127108,57 +130816,22 @@ 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, - [125549] = 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(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, - [125592] = 3, + [125748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, + ACTIONS(1809), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 30, + ACTIONS(1811), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -127189,20 +130862,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125635] = 3, - ACTIONS(1529), 1, + [125791] = 3, + ACTIONS(1819), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1531), 33, + ACTIONS(1817), 33, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_in, anon_sym_STAR, @@ -127229,33 +130902,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [125678] = 4, - STATE(1749), 1, - aux_sym_comparison_operator_repeat1, + [125834] = 7, + ACTIONS(2525), 1, + anon_sym_and, + ACTIONS(2527), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + STATE(1661), 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(1599), 29, - sym__newline, + ACTIONS(1415), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1435), 21, 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, @@ -127270,114 +130946,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125723] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2646), 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(2648), 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, - [125766] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2618), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_AT, - anon_sym_QMARK_DOT, + [125885] = 5, + ACTIONS(2527), 1, 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, - [125809] = 5, - ACTIONS(2650), 1, - anon_sym_in, - ACTIONS(2652), 1, - anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1417), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1419), 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, @@ -127392,194 +130988,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [125856] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2654), 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(2656), 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, - [125899] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2658), 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(2660), 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, - [125942] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2662), 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(2664), 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, - [125985] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2668), 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(2666), 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, + [125932] = 8, + ACTIONS(2684), 1, anon_sym_not, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [126028] = 4, + ACTIONS(2690), 1, + anon_sym_is, + STATE(1802), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1430), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2687), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1428), 28, + ACTIONS(1625), 3, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(2681), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 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_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, @@ -127587,30 +131032,26 @@ 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, - [126073] = 3, + [125985] = 4, + STATE(1762), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 5, + ACTIONS(1542), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - sym__newline, + ACTIONS(1544), 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, @@ -127633,71 +131074,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126116] = 3, + [126030] = 4, + STATE(1802), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2672), 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, + ACTIONS(1619), 5, + anon_sym_STAR, anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(2670), 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, - [126159] = 3, - ACTIONS(1523), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1525), 33, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 28, 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_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_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -127705,32 +131109,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, - [126202] = 3, + [126075] = 4, + STATE(1762), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 5, + ACTIONS(1550), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 29, - sym__newline, + ACTIONS(1552), 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, @@ -127753,27 +131156,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126245] = 4, - STATE(1698), 1, + [126120] = 4, + ACTIONS(1617), 1, + anon_sym_LF, + STATE(1817), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1665), 29, - sym__newline, + ACTIONS(1619), 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, @@ -127781,6 +131181,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, @@ -127788,39 +131189,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, - [126290] = 3, - ACTIONS(3), 2, + [126165] = 4, + ACTIONS(1617), 1, + anon_sym_LF, + STATE(1817), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1745), 30, + ACTIONS(1619), 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, @@ -127828,39 +131230,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, - [126333] = 3, - ACTIONS(3), 2, + [126210] = 4, + ACTIONS(1617), 1, + anon_sym_LF, + STATE(1817), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1741), 30, + ACTIONS(1619), 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, @@ -127868,38 +131271,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, - [126376] = 3, + [126255] = 6, + ACTIONS(2525), 1, + anon_sym_and, + ACTIONS(2527), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 4, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 30, + ACTIONS(1415), 26, 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, @@ -127914,11 +131322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126419] = 3, + [126304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2674), 12, + ACTIONS(2665), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -127931,47 +131339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2676), 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, - [126462] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2610), 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(2612), 22, + ACTIONS(2663), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -127994,33 +131362,34 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [126505] = 3, + [126347] = 4, + STATE(1802), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 6, - anon_sym_EQ, + ACTIONS(1619), 5, anon_sym_STAR, - anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1617), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_COMMA, 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_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, @@ -128034,13 +131403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126548] = 3, + [126392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 12, - sym__dedent, + ACTIONS(2669), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -128051,7 +131420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2516), 22, + ACTIONS(2667), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128074,27 +131443,27 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [126591] = 4, - STATE(2207), 1, - aux_sym_comparison_operator_repeat1, + [126435] = 4, + ACTIONS(2693), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 5, + ACTIONS(1501), 6, + anon_sym_EQ, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1503), 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, @@ -128115,68 +131484,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126636] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2678), 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(2680), 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, - [126679] = 4, - STATE(1698), 1, - aux_sym_comparison_operator_repeat1, + [126480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1829), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 29, - sym__newline, + ACTIONS(1831), 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, @@ -128196,68 +131524,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126724] = 20, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - anon_sym_LBRACK, - ACTIONS(2496), 1, - anon_sym_STAR_STAR, - ACTIONS(2498), 1, - anon_sym_QMARK_DOT, - ACTIONS(2504), 1, - anon_sym_PIPE, - ACTIONS(2506), 1, - anon_sym_AMP, - ACTIONS(2508), 1, - anon_sym_CARET, - ACTIONS(2512), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2540), 1, - anon_sym_not, - ACTIONS(2544), 1, - anon_sym_is, - STATE(1950), 1, - sym_argument_list, - STATE(2208), 1, - aux_sym_comparison_operator_repeat1, + [126523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2494), 2, + ACTIONS(1727), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2500), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1725), 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, - ACTIONS(2502), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2510), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2542), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - [126801] = 3, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [126566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2614), 12, + ACTIONS(2529), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -128270,7 +131581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2616), 22, + ACTIONS(2531), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -128293,25 +131604,69 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [126844] = 4, - STATE(1698), 1, + [126609] = 7, + ACTIONS(1627), 1, + anon_sym_LF, + ACTIONS(2698), 1, + anon_sym_not, + ACTIONS(2701), 1, + anon_sym_is, + STATE(1817), 1, aux_sym_comparison_operator_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2695), 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(1625), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_QMARK_DOT, + 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_QMARK_LBRACK, + [126660] = 4, + STATE(1762), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1517), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 29, - sym__newline, + ACTIONS(1519), 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, @@ -128334,16 +131689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126889] = 3, + [126705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 4, + ACTIONS(1849), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 30, + ACTIONS(1851), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -128374,58 +131729,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [126932] = 3, + [126748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2624), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1847), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1845), 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(2622), 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, - [126975] = 4, - STATE(1698), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [126791] = 4, + STATE(1664), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 29, + ACTIONS(1617), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -128455,102 +131810,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127020] = 3, - ACTIONS(3), 2, + [126836] = 4, + ACTIONS(1653), 1, + anon_sym_LF, + STATE(1561), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2682), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1655), 32, + 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_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(2684), 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, - [127063] = 3, - ACTIONS(3), 2, + 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, + [126881] = 4, + ACTIONS(1463), 1, + anon_sym_LF, + ACTIONS(2333), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2626), 12, - sym__dedent, - sym_string_start, + ACTIONS(1465), 32, + 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_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(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, - [127106] = 4, - STATE(2831), 1, - aux_sym_quant_target_repeat1, + 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, + [126926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1843), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1841), 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, @@ -128576,96 +131932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127151] = 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(2648), 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, - [127194] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2662), 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(2664), 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, - [127237] = 3, + [126969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 4, + ACTIONS(1839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 30, + ACTIONS(1837), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -128696,32 +131972,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127280] = 4, - ACTIONS(1599), 1, - anon_sym_LF, - STATE(1778), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [127012] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 32, + ACTIONS(1815), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1813), 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, @@ -128729,75 +132006,34 @@ 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, - [127325] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2674), 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(2676), 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, - [127368] = 3, + [127055] = 4, + STATE(1762), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 4, + ACTIONS(1501), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 30, + ACTIONS(1503), 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, @@ -128817,65 +132053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127411] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2678), 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(2680), 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, - [127454] = 4, - STATE(1769), 1, - aux_sym_dotted_name_repeat1, + [127100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1461), 5, + ACTIONS(1603), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1459), 28, + ACTIONS(1601), 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, @@ -128898,58 +132093,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127499] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2682), 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(2684), 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, - [127542] = 4, - STATE(2212), 1, - aux_sym_comparison_operator_repeat1, + [127143] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1611), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1609), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -128979,28 +132133,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127587] = 4, - STATE(1621), 1, - aux_sym_dotted_name_repeat1, + [127186] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 5, - anon_sym_EQ, + ACTIONS(1835), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 28, + ACTIONS(1833), 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, @@ -129020,18 +132173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127632] = 4, - STATE(2202), 1, + [127229] = 4, + STATE(1664), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1617), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -129061,13 +132214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127677] = 3, + [127274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 12, - sym__dedent, + ACTIONS(2625), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -129078,7 +132231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2536), 22, + ACTIONS(2623), 22, anon_sym_import, anon_sym_DOT, anon_sym_assert, @@ -129101,16 +132254,16 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [127720] = 3, + [127317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 4, + ACTIONS(1753), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 30, + ACTIONS(1751), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -129141,152 +132294,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [127763] = 3, + [127360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2658), 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(2660), 22, - anon_sym_import, + ACTIONS(1785), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1783), 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, - [127806] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2654), 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(2656), 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, - [127849] = 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, + [127403] = 4, + STATE(1664), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2642), 12, - sym__dedent, - sym_string_start, + ACTIONS(1619), 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_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(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, - [127892] = 4, - ACTIONS(1665), 1, - anon_sym_LF, - STATE(1704), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [127448] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 32, + 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_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, @@ -129294,32 +132409,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, - [127937] = 4, - ACTIONS(1665), 1, - anon_sym_LF, - STATE(1704), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + [127491] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 32, + ACTIONS(1839), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1837), 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, @@ -129327,7 +132441,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, @@ -129335,23 +132448,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, - [127982] = 4, - ACTIONS(1665), 1, + [127533] = 3, + ACTIONS(1693), 1, anon_sym_LF, - STATE(1704), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 32, + ACTIONS(1695), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -129384,15 +132493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [128027] = 4, - ACTIONS(1665), 1, + [127575] = 3, + ACTIONS(1813), 1, anon_sym_LF, - STATE(1704), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 32, + ACTIONS(1815), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -129425,36 +132532,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [128072] = 6, - ACTIONS(2524), 1, - anon_sym_and, - ACTIONS(2528), 1, - anon_sym_PLUS, - ACTIONS(3), 2, + [127617] = 3, + ACTIONS(1607), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1440), 26, + ACTIONS(1605), 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, + 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, @@ -129462,63 +132563,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, - [128121] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2574), 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(2576), 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, - [128164] = 3, + [127659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 5, - anon_sym_EQ, + ACTIONS(1805), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1579), 29, + ACTIONS(1807), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -129548,26 +132610,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128207] = 3, - ACTIONS(3), 2, + [127701] = 3, + ACTIONS(1797), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1585), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1583), 29, - sym__newline, + ACTIONS(1795), 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, @@ -129575,6 +132633,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, @@ -129582,32 +132641,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, - [128250] = 3, - ACTIONS(3), 2, + [127743] = 3, + ACTIONS(1717), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1587), 29, - sym__newline, + ACTIONS(1719), 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, @@ -129615,6 +132672,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, @@ -129622,33 +132680,34 @@ 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, - [128293] = 3, + [127785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 4, + ACTIONS(1809), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 30, + ACTIONS(1811), 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, @@ -129668,64 +132727,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128336] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2570), 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(2572), 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, - [128379] = 3, + [127827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 5, + ACTIONS(1603), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1591), 29, - sym__newline, + ACTIONS(1601), 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, @@ -129748,27 +132766,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128422] = 3, + [127869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 4, + ACTIONS(1611), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1703), 30, + ACTIONS(1609), 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, @@ -129788,33 +132805,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128465] = 3, - ACTIONS(3), 2, + [127911] = 3, + ACTIONS(1831), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1699), 30, + ACTIONS(1829), 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, @@ -129822,72 +132836,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, - [128508] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(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, - [128551] = 3, - ACTIONS(3), 2, + [127953] = 3, + ACTIONS(1725), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1569), 29, - sym__newline, + ACTIONS(1727), 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, @@ -129895,6 +132867,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, @@ -129902,37 +132875,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, - [128594] = 5, - ACTIONS(2650), 1, - anon_sym_in, - ACTIONS(2686), 1, - anon_sym_not, + [127995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1835), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1833), 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, anon_sym_or, anon_sym_PLUS, @@ -129950,33 +132922,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128641] = 3, - ACTIONS(3), 2, + [128037] = 3, + ACTIONS(1321), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1691), 30, + ACTIONS(1319), 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, @@ -129984,39 +132953,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, - [128684] = 3, - ACTIONS(3), 2, + [128079] = 3, + ACTIONS(1851), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1849), 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, @@ -130024,153 +132992,34 @@ 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, - [128727] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2562), 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(2564), 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, - [128770] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2530), 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(2532), 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, - [128813] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2597), 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(2595), 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, - [128856] = 3, + [128121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 4, + ACTIONS(1799), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1328), 30, + ACTIONS(1801), 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, @@ -130190,33 +133039,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [128899] = 3, - ACTIONS(3), 2, + [128163] = 3, + ACTIONS(1607), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 30, + ACTIONS(1605), 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, @@ -130224,113 +133070,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, - [128942] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2668), 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(2666), 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, - [128985] = 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(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, - [129028] = 4, - STATE(1712), 1, - aux_sym_comparison_operator_repeat1, + [128205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 5, + ACTIONS(1827), 4, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1825), 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, @@ -130338,6 +133103,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, @@ -130351,104 +133117,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129073] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2672), 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(2670), 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, - [129116] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2566), 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(2568), 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, - [129159] = 4, - ACTIONS(2608), 1, - anon_sym_EQ, + [128247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, + ACTIONS(1739), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 28, + ACTIONS(1741), 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, @@ -130471,25 +133156,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129203] = 3, - ACTIONS(3), 2, + [128289] = 3, + ACTIONS(1845), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1587), 28, + ACTIONS(1847), 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, @@ -130497,6 +133179,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, @@ -130504,19 +133187,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, - [129245] = 3, - ACTIONS(1719), 1, + [128331] = 3, + ACTIONS(1731), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 32, + ACTIONS(1729), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130549,13 +133234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [129287] = 3, - ACTIONS(1721), 1, + [128373] = 3, + ACTIONS(1841), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 32, + ACTIONS(1843), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130588,13 +133273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [129329] = 3, - ACTIONS(1725), 1, + [128415] = 3, + ACTIONS(1837), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 32, + ACTIONS(1839), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130627,73 +133312,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [129371] = 5, - ACTIONS(2130), 1, + [128457] = 5, + ACTIONS(1607), 1, + anon_sym_LF, + ACTIONS(2704), 1, anon_sym_in, - ACTIONS(2688), 1, + ACTIONS(2706), 1, anon_sym_not, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 26, + ACTIONS(1605), 30, 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, - anon_sym_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, - [129417] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1789), 4, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1791), 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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -130701,22 +133345,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, - [129459] = 3, + [128503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 4, + ACTIONS(1785), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 29, + ACTIONS(1783), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -130746,16 +133392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129501] = 3, + [128545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 4, + ACTIONS(1787), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1807), 29, + ACTIONS(1789), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -130785,23 +133431,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129543] = 3, + [128587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1525), 5, - anon_sym_EQ, + ACTIONS(1753), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1523), 28, + 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_RPAREN, anon_sym_LBRACK, anon_sym_in, anon_sym_STAR_STAR, @@ -130824,13 +133470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129585] = 3, - ACTIONS(1737), 1, + [128629] = 3, + ACTIONS(1793), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 32, + ACTIONS(1791), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -130863,61 +133509,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [129627] = 3, - ACTIONS(1683), 1, - anon_sym_LF, - ACTIONS(5), 2, + [128671] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 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(1763), 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, - [129669] = 3, - ACTIONS(1707), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1705), 32, + ACTIONS(1765), 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, @@ -130925,7 +133535,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, @@ -130933,24 +133542,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, - [129711] = 3, + [128713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, + ACTIONS(1763), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 29, + ACTIONS(1765), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -130980,23 +133587,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129753] = 3, + [128755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 4, + ACTIONS(1621), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1857), 29, - sym__newline, + ACTIONS(1623), 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, @@ -131019,16 +133626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129795] = 3, + [128797] = 5, + ACTIONS(2141), 1, + anon_sym_in, + ACTIONS(2143), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1607), 27, sym__newline, anon_sym_DOT, anon_sym_as, @@ -131037,10 +133648,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, @@ -131058,23 +133667,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129837] = 3, + [128843] = 4, + STATE(1963), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 4, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1865), 29, - sym__newline, + ACTIONS(1617), 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, @@ -131097,25 +133707,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129879] = 3, - ACTIONS(3), 2, + [128887] = 3, + ACTIONS(1751), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1819), 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, @@ -131123,6 +133730,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, @@ -131130,22 +133738,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, - [129921] = 3, + [128929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 29, + ACTIONS(1607), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -131175,25 +133785,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [129963] = 3, - ACTIONS(3), 2, + [128971] = 3, + ACTIONS(1783), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1691), 29, - sym__newline, + ACTIONS(1785), 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, @@ -131201,6 +133808,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, @@ -131208,23 +133816,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, - [130005] = 3, + [129013] = 4, + STATE(1963), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1531), 5, - anon_sym_EQ, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1529), 28, + ACTIONS(1617), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131253,30 +133864,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130047] = 3, - ACTIONS(1703), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129057] = 5, + ACTIONS(2708), 1, + anon_sym_in, + ACTIONS(2710), 1, + anon_sym_not, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 32, + ACTIONS(1605), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 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_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, @@ -131284,31 +133899,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, - [130089] = 3, + [129103] = 4, + STATE(1963), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 4, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 29, - sym__newline, + ACTIONS(1617), 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, @@ -131331,22 +133945,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130131] = 3, - ACTIONS(1699), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129147] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 32, + ACTIONS(1679), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1677), 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, @@ -131354,7 +133971,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, @@ -131362,40 +133978,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, - [130173] = 5, - ACTIONS(1599), 1, - anon_sym_LF, - ACTIONS(2690), 1, - anon_sym_in, - ACTIONS(2692), 1, - anon_sym_not, - ACTIONS(5), 2, + [129189] = 4, + STATE(1963), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 30, + ACTIONS(1619), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 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_STAR, + 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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -131403,21 +134018,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, - [130219] = 3, - ACTIONS(1691), 1, + [129233] = 3, + ACTIONS(1781), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 32, + ACTIONS(1779), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131450,13 +134063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130261] = 3, - ACTIONS(1599), 1, + [129275] = 3, + ACTIONS(1777), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 32, + ACTIONS(1775), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131489,13 +134102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130303] = 3, - ACTIONS(1328), 1, + [129317] = 3, + ACTIONS(1773), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 32, + ACTIONS(1771), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131528,23 +134141,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130345] = 3, + [129359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 4, + ACTIONS(1613), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 29, - sym__newline, + ACTIONS(1615), 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, @@ -131567,16 +134180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130387] = 3, + [129401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 4, + ACTIONS(1759), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1845), 29, + ACTIONS(1761), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -131606,13 +134219,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130429] = 3, - ACTIONS(1599), 1, + [129443] = 3, + ACTIONS(1769), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 32, + ACTIONS(1767), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131645,25 +134258,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130471] = 3, - ACTIONS(3), 2, + [129485] = 3, + ACTIONS(1757), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1847), 29, - sym__newline, + ACTIONS(1755), 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, @@ -131671,6 +134281,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, @@ -131678,22 +134289,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, - [130513] = 3, + [129527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 4, + ACTIONS(1815), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 29, + ACTIONS(1813), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -131723,13 +134336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130555] = 3, - ACTIONS(1741), 1, + [129569] = 3, + ACTIONS(1749), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 32, + ACTIONS(1747), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131762,13 +134375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130597] = 3, - ACTIONS(1729), 1, + [129611] = 5, + ACTIONS(1607), 1, anon_sym_LF, + ACTIONS(1689), 1, + anon_sym_in, + ACTIONS(1691), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 32, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131776,11 +134393,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, @@ -131801,61 +134416,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130639] = 3, - ACTIONS(1733), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129657] = 3, + ACTIONS(3), 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, + ACTIONS(1735), 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, - [130681] = 3, - ACTIONS(1753), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1755), 32, + ACTIONS(1737), 29, 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_LBRACE, anon_sym_in, - anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, anon_sym_not, @@ -131863,7 +134442,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, @@ -131871,69 +134449,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, - [130723] = 3, - ACTIONS(1757), 1, - anon_sym_LF, - ACTIONS(5), 2, + [129699] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 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(1747), 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, - [130765] = 3, - ACTIONS(1761), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1763), 32, + ACTIONS(1749), 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, @@ -131941,7 +134481,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, @@ -131949,21 +134488,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, - [130807] = 3, - ACTIONS(1765), 1, + [129741] = 3, + ACTIONS(1825), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 32, + ACTIONS(1827), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -131996,13 +134533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130849] = 3, - ACTIONS(1745), 1, + [129783] = 5, + ACTIONS(1607), 1, anon_sym_LF, + ACTIONS(2704), 1, + anon_sym_in, + ACTIONS(2712), 1, + anon_sym_not, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 32, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132010,11 +134551,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, @@ -132035,13 +134574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130891] = 3, - ACTIONS(1771), 1, + [129829] = 3, + ACTIONS(1833), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 32, + ACTIONS(1835), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132074,16 +134613,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [130933] = 3, + [129871] = 5, + ACTIONS(2708), 1, + anon_sym_in, + ACTIONS(2714), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 29, + ACTIONS(1607), 27, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132092,10 +134635,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, @@ -132113,30 +134654,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [130975] = 5, - ACTIONS(2694), 1, - anon_sym_in, - ACTIONS(2696), 1, - anon_sym_not, + [129917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1687), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, - sym__newline, + ACTIONS(1685), 29, 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_LBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PLUS, @@ -132154,16 +134693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131021] = 3, + [129959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 4, + ACTIONS(1843), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1328), 29, + ACTIONS(1841), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132193,13 +134732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131063] = 3, - ACTIONS(1749), 1, + [130001] = 3, + ACTIONS(1811), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 32, + ACTIONS(1809), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132232,13 +134771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131105] = 3, - ACTIONS(1685), 1, + [130043] = 3, + ACTIONS(1807), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 32, + ACTIONS(1805), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132271,146 +134810,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131147] = 8, - ACTIONS(2701), 1, - anon_sym_not, - ACTIONS(2707), 1, - anon_sym_is, - STATE(1852), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2704), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2698), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1543), 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_QMARK_LBRACK, - [131199] = 4, - STATE(2210), 1, - aux_sym_comparison_operator_repeat1, + [130085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 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, - [131243] = 4, - STATE(1921), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1755), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 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, - [131287] = 3, - ACTIONS(1775), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1773), 32, + ACTIONS(1757), 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, @@ -132418,7 +134836,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, @@ -132426,24 +134843,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, - [131329] = 3, + [130127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 4, + ACTIONS(1729), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 29, + ACTIONS(1731), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132473,64 +134888,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131371] = 3, - ACTIONS(3), 2, + [130169] = 3, + ACTIONS(1801), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1775), 29, - sym__newline, + ACTIONS(1799), 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_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, - [131413] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1687), 4, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1685), 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, @@ -132538,46 +134911,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, - [131455] = 4, - STATE(1694), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1561), 4, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1559), 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, @@ -132585,31 +134919,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, - [131499] = 3, - ACTIONS(3), 2, + [130211] = 3, + ACTIONS(1715), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1815), 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, @@ -132617,6 +134950,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, @@ -132624,22 +134958,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, - [131541] = 3, + [130253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 4, + ACTIONS(1695), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1869), 29, + ACTIONS(1693), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132669,16 +135005,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131583] = 3, + [130295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 4, + ACTIONS(1729), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 29, + ACTIONS(1731), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132708,13 +135044,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131625] = 3, - ACTIONS(1779), 1, + [130337] = 3, + ACTIONS(1761), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 32, + ACTIONS(1759), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132747,71 +135083,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [131667] = 3, - ACTIONS(1783), 1, - anon_sym_LF, - ACTIONS(5), 2, + [130379] = 4, + STATE(2236), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 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(1605), 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, - [131709] = 5, - ACTIONS(1599), 1, - anon_sym_LF, - ACTIONS(2690), 1, - anon_sym_in, - ACTIONS(2710), 1, - anon_sym_not, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 30, + ACTIONS(1607), 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_STAR, + 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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -132819,24 +135117,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, - [131755] = 3, + [130423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 4, + ACTIONS(1847), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1807), 29, + ACTIONS(1845), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -132866,22 +135162,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131797] = 3, - ACTIONS(1787), 1, - anon_sym_LF, - ACTIONS(5), 2, + [130465] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 32, + ACTIONS(1675), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 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, @@ -132889,7 +135188,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, @@ -132897,31 +135195,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, - [131839] = 3, + [130507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1382), 5, - anon_sym_EQ, + ACTIONS(1849), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1380), 28, + ACTIONS(1851), 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, @@ -132944,7 +135240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131881] = 3, + [130549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -132954,7 +135250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1595), 28, + ACTIONS(1599), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -132983,25 +135279,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [131923] = 3, - ACTIONS(3), 2, + [130591] = 3, + ACTIONS(1707), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1793), 29, - sym__newline, + ACTIONS(1705), 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, @@ -133009,6 +135302,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, @@ -133016,23 +135310,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, - [131965] = 3, + [130633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 5, + ACTIONS(1663), 5, anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1661), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133061,57 +135357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132007] = 5, - ACTIONS(2130), 1, - anon_sym_in, - ACTIONS(2712), 1, - anon_sym_not, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 5, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 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, - anon_sym_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, - [132053] = 3, + [130675] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 4, + ACTIONS(1713), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 29, + ACTIONS(1715), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133141,22 +135396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132095] = 3, - ACTIONS(1787), 1, - anon_sym_LF, - ACTIONS(5), 2, + [130717] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 32, + ACTIONS(1669), 5, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1671), 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, @@ -133164,7 +135422,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, @@ -133172,24 +135429,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, - [132137] = 3, + [130759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1779), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 29, + ACTIONS(1781), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133219,23 +135474,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132179] = 3, + [130801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 4, + ACTIONS(1665), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 29, - sym__newline, + ACTIONS(1667), 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, @@ -133258,16 +135513,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132221] = 3, + [130843] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 4, + ACTIONS(1319), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 29, + ACTIONS(1321), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133297,16 +135552,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132263] = 3, + [130885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 4, + ACTIONS(1727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 29, + ACTIONS(1725), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133336,16 +135591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132305] = 3, + [130927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 4, + ACTIONS(1775), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1841), 29, + ACTIONS(1777), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133375,53 +135630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132347] = 4, - STATE(2212), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 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, - [132391] = 3, - ACTIONS(1791), 1, + [130969] = 3, + ACTIONS(1703), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 32, + ACTIONS(1701), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133454,30 +135669,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132433] = 3, - ACTIONS(1803), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131011] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 32, + ACTIONS(1605), 6, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1607), 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, @@ -133485,31 +135702,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, - [132475] = 3, + [131053] = 4, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 29, - sym__newline, + ACTIONS(1607), 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, @@ -133532,25 +135748,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132517] = 3, - ACTIONS(3), 2, + [131097] = 3, + ACTIONS(1699), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1787), 29, - sym__newline, + ACTIONS(1697), 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, @@ -133558,6 +135771,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, @@ -133565,29 +135779,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, - [132559] = 3, + [131139] = 4, + STATE(1873), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 29, - sym__newline, + ACTIONS(1607), 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, @@ -133610,16 +135827,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132601] = 3, + [131183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1787), 29, + ACTIONS(1607), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133649,13 +135866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132643] = 3, - ACTIONS(1807), 1, + [131225] = 3, + ACTIONS(1875), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 32, + ACTIONS(1873), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133688,25 +135905,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [132685] = 3, - ACTIONS(3), 2, + [131267] = 3, + ACTIONS(1741), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1535), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1533), 28, + ACTIONS(1739), 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, @@ -133714,6 +135928,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, @@ -133721,31 +135936,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, - [132727] = 3, - ACTIONS(3), 2, + [131309] = 3, + ACTIONS(1871), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1699), 29, - sym__newline, + ACTIONS(1869), 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, @@ -133753,6 +135967,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, @@ -133760,38 +135975,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, - [132769] = 3, + [131351] = 5, + ACTIONS(2141), 1, + anon_sym_in, + ACTIONS(2716), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, + ACTIONS(1605), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 29, - sym__newline, + ACTIONS(1607), 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, @@ -133805,32 +136024,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132811] = 3, + [131397] = 5, + ACTIONS(2141), 1, + anon_sym_in, + ACTIONS(2718), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, + ACTIONS(1605), 5, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 29, - sym__newline, + ACTIONS(1607), 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, @@ -133844,17 +136065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132853] = 3, + [131443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1541), 5, - anon_sym_EQ, + ACTIONS(1743), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1539), 28, + ACTIONS(1745), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -133862,6 +136082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -133883,16 +136104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132895] = 3, + [131485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 4, + ACTIONS(1705), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 29, + ACTIONS(1707), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -133922,23 +136143,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132937] = 3, + [131527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, + ACTIONS(1659), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 29, - sym__newline, + ACTIONS(1657), 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, @@ -133961,25 +136182,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [132979] = 3, - ACTIONS(3), 2, + [131569] = 3, + ACTIONS(1867), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 5, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1579), 28, + ACTIONS(1865), 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, @@ -133987,6 +136205,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, @@ -133994,26 +136213,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, - [133021] = 5, - ACTIONS(2130), 1, - anon_sym_in, - ACTIONS(2132), 1, - anon_sym_not, + [131611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1725), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134022,8 +136239,10 @@ 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, @@ -134041,13 +136260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133067] = 3, - ACTIONS(1793), 1, + [131653] = 3, + ACTIONS(1789), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 32, + ACTIONS(1787), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134080,52 +136299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133109] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1731), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1729), 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, - [133151] = 3, - ACTIONS(1807), 1, + [131695] = 3, + ACTIONS(1725), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 32, + ACTIONS(1727), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134158,13 +136338,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133193] = 3, - ACTIONS(1797), 1, + [131737] = 3, + ACTIONS(1863), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 32, + ACTIONS(1861), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134197,22 +136377,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133235] = 3, - ACTIONS(1819), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131779] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 32, + ACTIONS(1795), 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, @@ -134220,7 +136403,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, @@ -134228,21 +136410,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, - [133277] = 3, - ACTIONS(1823), 1, + [131821] = 3, + ACTIONS(1859), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 32, + ACTIONS(1857), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134275,18 +136455,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133319] = 4, - STATE(1852), 1, - aux_sym_comparison_operator_repeat1, + [131863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1823), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 28, + ACTIONS(1821), 29, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134294,6 +136472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, @@ -134315,61 +136494,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133363] = 3, - ACTIONS(1831), 1, - anon_sym_LF, - ACTIONS(5), 2, + [131905] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 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(1829), 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, - [133405] = 3, - ACTIONS(1811), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1809), 32, + ACTIONS(1831), 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, @@ -134377,7 +136520,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, @@ -134385,21 +136527,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, - [133447] = 3, - ACTIONS(1815), 1, + [131947] = 3, + ACTIONS(1721), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 32, + ACTIONS(1723), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134432,16 +136572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133489] = 3, + [131989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 4, + ACTIONS(1853), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1779), 29, + ACTIONS(1855), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134471,61 +136611,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133531] = 3, - ACTIONS(1835), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132031] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 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(1771), 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, - [133573] = 3, - ACTIONS(1847), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1849), 32, + ACTIONS(1773), 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, @@ -134533,7 +136637,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, @@ -134541,31 +136644,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, - [133615] = 3, + [132073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 5, - anon_sym_EQ, + ACTIONS(1857), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 28, + ACTIONS(1859), 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, @@ -134588,16 +136689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133657] = 3, + [132115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 4, + ACTIONS(1767), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1803), 29, + ACTIONS(1769), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134627,13 +136728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133699] = 3, - ACTIONS(1865), 1, + [132157] = 3, + ACTIONS(1855), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 32, + ACTIONS(1853), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134666,13 +136767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133741] = 3, - ACTIONS(1869), 1, + [132199] = 3, + ACTIONS(1765), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 32, + ACTIONS(1763), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134705,55 +136806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133783] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1701), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1703), 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, - [133825] = 3, + [132241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, + ACTIONS(1861), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 29, + ACTIONS(1863), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134783,52 +136845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [133867] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 6, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 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, - [133909] = 3, - ACTIONS(1861), 1, + [132283] = 3, + ACTIONS(1765), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 32, + ACTIONS(1763), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -134861,22 +136884,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [133951] = 3, - ACTIONS(1829), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132325] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 32, + ACTIONS(1865), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1867), 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, @@ -134884,7 +136910,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, @@ -134892,24 +136917,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, - [133993] = 3, + [132367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 4, + ACTIONS(1873), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 29, + ACTIONS(1875), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -134939,23 +136962,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134035] = 3, + [132409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1585), 5, - anon_sym_EQ, + ACTIONS(1723), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1583), 28, + ACTIONS(1721), 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, @@ -134978,24 +137001,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134077] = 4, - STATE(1852), 1, - aux_sym_comparison_operator_repeat1, + [132451] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1869), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 28, + ACTIONS(1871), 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, @@ -135018,18 +137040,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134121] = 4, - STATE(1852), 1, - aux_sym_comparison_operator_repeat1, + [132493] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1475), 5, + anon_sym_EQ, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 28, + ACTIONS(1473), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135058,59 +137079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134165] = 3, - ACTIONS(1857), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1855), 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, - [134207] = 5, - ACTIONS(2694), 1, - anon_sym_in, - ACTIONS(2714), 1, - anon_sym_not, + [132535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1791), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, + ACTIONS(1793), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -135119,8 +137097,10 @@ 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, @@ -135138,13 +137118,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134253] = 3, - ACTIONS(1853), 1, + [132577] = 3, + ACTIONS(1731), 1, anon_sym_LF, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 32, + ACTIONS(1729), 32, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135177,24 +137157,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_is, anon_sym_QMARK_LBRACK, - [134295] = 4, - STATE(1852), 1, - aux_sym_comparison_operator_repeat1, + [132619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1697), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 28, + ACTIONS(1699), 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, @@ -135217,17 +137196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134339] = 3, + [132661] = 4, + ACTIONS(2540), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 5, - anon_sym_EQ, + ACTIONS(1465), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1591), 28, + ACTIONS(1463), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135256,23 +137236,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134381] = 3, + [132705] = 4, + STATE(1762), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 4, + ACTIONS(1655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 29, - sym__newline, + ACTIONS(1653), 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, @@ -135295,22 +137276,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134423] = 3, - ACTIONS(1841), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132749] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 32, + ACTIONS(1719), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1717), 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, @@ -135318,7 +137302,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, @@ -135326,24 +137309,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, - [134465] = 3, + [132791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 4, + ACTIONS(1701), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 29, + ACTIONS(1703), 29, sym__newline, anon_sym_DOT, anon_sym_as, @@ -135373,30 +137354,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134507] = 3, - ACTIONS(1707), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132833] = 8, + ACTIONS(2723), 1, + anon_sym_not, + ACTIONS(2729), 1, + anon_sym_is, + STATE(1963), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 32, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2726), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2720), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 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, @@ -135404,40 +137397,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, - [134549] = 5, - ACTIONS(1599), 1, - anon_sym_LF, - ACTIONS(1713), 1, - anon_sym_in, - ACTIONS(1715), 1, - anon_sym_not, - ACTIONS(5), 2, + [132885] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 30, + ACTIONS(1817), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1819), 29, 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_STAR, + 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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_PIPE, @@ -135445,30 +137431,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, - [134595] = 3, - ACTIONS(1845), 1, - anon_sym_LF, - ACTIONS(5), 2, + [132927] = 3, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 32, + ACTIONS(1853), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1855), 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, @@ -135476,7 +137462,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, @@ -135484,31 +137469,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, - [134637] = 3, + [132968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 4, + ACTIONS(1727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 29, - sym__newline, + ACTIONS(1725), 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, @@ -135531,23 +137513,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134679] = 3, + [133009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 4, + ACTIONS(1869), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1831), 29, - sym__newline, + ACTIONS(1871), 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, @@ -135570,33 +137551,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134721] = 3, + [133050] = 13, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1691), 28, + ACTIONS(2732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2738), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 17, 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, @@ -135607,8 +137599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [134762] = 3, + [133111] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -135617,7 +137608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1737), 28, + ACTIONS(1741), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135646,57 +137637,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134803] = 6, - ACTIONS(2716), 1, - anon_sym_and, - ACTIONS(2718), 1, - anon_sym_PLUS, + [133152] = 14, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1253), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1251), 24, + ACTIONS(2732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2738), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 15, 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_DASH, - anon_sym_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, - [134850] = 3, + [133215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 4, + ACTIONS(1873), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1707), 28, + ACTIONS(1875), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135725,100 +137724,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [134891] = 11, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_QMARK_DOT, - ACTIONS(2720), 1, - anon_sym_as, - ACTIONS(2722), 1, - anon_sym_if, - ACTIONS(2724), 1, - anon_sym_and, - ACTIONS(2726), 1, - anon_sym_or, - ACTIONS(2728), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1491), 11, - sym_string_start, - anon_sym_COMMA, + [133256] = 15, + ACTIONS(2167), 1, anon_sym_LPAREN, + ACTIONS(2169), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, anon_sym_STAR_STAR, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1493), 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, - [134948] = 3, + ACTIONS(2742), 1, + anon_sym_CARET, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1703), 28, + ACTIONS(2732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2738), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 14, 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, - [134989] = 3, + [133321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 4, + ACTIONS(1697), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1683), 28, + ACTIONS(1699), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135847,54 +137812,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135030] = 3, + [133362] = 16, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + ACTIONS(2742), 1, + anon_sym_CARET, + ACTIONS(2744), 1, + anon_sym_AMP, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1815), 28, + ACTIONS(2732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2738), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1532), 13, 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, - [135071] = 3, + [133429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 4, + ACTIONS(1701), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1811), 28, + ACTIONS(1703), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135923,16 +137901,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135112] = 3, + [133470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 4, + ACTIONS(1705), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1797), 28, + ACTIONS(1707), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -135961,33 +137939,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135153] = 6, - ACTIONS(2716), 1, - anon_sym_and, - ACTIONS(2718), 1, - anon_sym_PLUS, + [133511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, + ACTIONS(1727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 24, + ACTIONS(1725), 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, @@ -136002,33 +137977,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135200] = 3, + [133552] = 12, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1530), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1807), 28, + ACTIONS(2732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2738), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1532), 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, @@ -136039,17 +138024,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [135241] = 3, + [133611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 4, + ACTIONS(1713), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1753), 28, + ACTIONS(1715), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136078,30 +138062,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135282] = 3, + [133652] = 7, + ACTIONS(2746), 1, + anon_sym_and, + ACTIONS(2748), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 4, + STATE(1166), 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(1807), 28, + ACTIONS(1415), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_COMMA, + anon_sym_QMARK_DOT, + anon_sym_or, + ACTIONS(1435), 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, @@ -136116,16 +138104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135323] = 3, + [133701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 4, + ACTIONS(1723), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1719), 28, + ACTIONS(1721), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136154,126 +138142,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135364] = 20, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, - anon_sym_STAR_STAR, - ACTIONS(2738), 1, - anon_sym_PIPE, - ACTIONS(2740), 1, - anon_sym_AMP, - ACTIONS(2742), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [133742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2730), 2, + ACTIONS(1729), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2734), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2736), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1731), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - [135439] = 20, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2161), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2163), 1, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2738), 1, - anon_sym_PIPE, - ACTIONS(2740), 1, - anon_sym_AMP, - ACTIONS(2742), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2730), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2734), 2, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2736), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2744), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [135514] = 3, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [133783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 4, + ACTIONS(1729), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1729), 28, + ACTIONS(1731), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136302,16 +138218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135555] = 3, + [133824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 4, + ACTIONS(1755), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1819), 28, + ACTIONS(1757), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136340,16 +138256,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135596] = 3, + [133865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 4, + ACTIONS(1771), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1829), 28, + ACTIONS(1773), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136378,26 +138294,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135637] = 3, + [133906] = 10, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 4, + ACTIONS(1530), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1721), 28, + ACTIONS(1532), 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, @@ -136415,17 +138339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [135678] = 3, + [133961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 4, + ACTIONS(1719), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1725), 28, + ACTIONS(1717), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136454,16 +138377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135719] = 3, + [134002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 4, + ACTIONS(1775), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1803), 28, + ACTIONS(1777), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136492,169 +138415,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [135760] = 5, - ACTIONS(2728), 1, - anon_sym_PLUS, + [134043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 12, - sym_string_start, + ACTIONS(1779), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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_LBRACE, - anon_sym_RBRACE, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_QMARK_DOT, - anon_sym_DQUOTE, - anon_sym_DASH, - anon_sym_TILDE, - sym_float, - ACTIONS(1442), 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, - [135805] = 9, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_QMARK_DOT, - ACTIONS(2724), 1, - anon_sym_and, - ACTIONS(2726), 1, - anon_sym_or, - ACTIONS(2728), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1485), 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(1487), 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [135858] = 20, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, - anon_sym_STAR_STAR, - ACTIONS(2738), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, - ACTIONS(2740), 1, anon_sym_AMP, - ACTIONS(2742), 1, anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2022), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2730), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2734), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2736), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2744), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [135933] = 10, - ACTIONS(2161), 1, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [134084] = 10, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2177), 1, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, + ACTIONS(2734), 1, anon_sym_STAR_STAR, - STATE(1282), 1, + STATE(1309), 1, sym_argument_list, - STATE(2215), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1372), 4, + ACTIONS(1530), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1374), 21, + ACTIONS(1532), 21, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136676,56 +138498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [135988] = 5, - ACTIONS(2728), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 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(1446), 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, + [134139] = 5, + ACTIONS(2750), 1, + anon_sym_in, + ACTIONS(2752), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - sym_undefined, - [136033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1741), 28, + ACTIONS(1607), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136733,10 +138519,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, @@ -136754,16 +138538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136074] = 3, + [134184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 4, + ACTIONS(1791), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1841), 28, + ACTIONS(1793), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136792,16 +138576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136115] = 3, + [134225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 4, + ACTIONS(1795), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1699), 28, + ACTIONS(1797), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136830,27 +138614,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136156] = 4, - STATE(2202), 1, + [134266] = 10, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1427), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 27, - sym__newline, + ACTIONS(1425), 21, 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, @@ -136868,17 +138659,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - anon_sym_QMARK_LBRACK, - [136199] = 3, + [134321] = 9, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1309), 1, + anon_sym_QMARK_DOT, + ACTIONS(2754), 1, + anon_sym_and, + ACTIONS(2756), 1, + anon_sym_or, + ACTIONS(2758), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 4, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1301), 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(1299), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [134374] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1865), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1845), 28, + ACTIONS(1867), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136907,16 +138741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136240] = 3, + [134415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1745), 28, + ACTIONS(1607), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -136945,35 +138779,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136281] = 8, - ACTIONS(2716), 1, - anon_sym_and, - ACTIONS(2718), 1, - anon_sym_PLUS, - ACTIONS(2746), 1, - anon_sym_or, + [134456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1487), 4, + ACTIONS(1759), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1485), 21, + 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, + anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -136988,28 +138817,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136332] = 11, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1633), 1, + [134497] = 20, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2720), 1, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + ACTIONS(2742), 1, + anon_sym_CARET, + ACTIONS(2744), 1, + anon_sym_AMP, + ACTIONS(2760), 1, + anon_sym_PIPE, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2738), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2740), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1321), 5, + anon_sym_DOT, anon_sym_as, - ACTIONS(2722), 1, anon_sym_if, - ACTIONS(2724), 1, anon_sym_and, - ACTIONS(2726), 1, anon_sym_or, - ACTIONS(2728), 1, + ACTIONS(1455), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [134572] = 5, + ACTIONS(2758), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, + STATE(1028), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2750), 11, + ACTIONS(1419), 12, sym_string_start, anon_sym_COMMA, anon_sym_LPAREN, @@ -137017,78 +138889,94 @@ 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(2748), 12, + ACTIONS(1417), 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, - [136389] = 10, - ACTIONS(2716), 1, - anon_sym_and, - ACTIONS(2718), 1, - anon_sym_PLUS, - ACTIONS(2746), 1, - anon_sym_or, - ACTIONS(2752), 1, - anon_sym_as, - ACTIONS(2754), 1, - anon_sym_if, + [134617] = 20, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + ACTIONS(2742), 1, + anon_sym_CARET, + ACTIONS(2744), 1, + anon_sym_AMP, + ACTIONS(2760), 1, + anon_sym_PIPE, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 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(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1493), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_not, + ACTIONS(2732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2736), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2738), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2740), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 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, - [136444] = 3, + [134692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 4, + ACTIONS(1319), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1749), 28, + ACTIONS(1321), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137117,22 +139005,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136485] = 3, + [134733] = 4, + STATE(2233), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1733), 28, + ACTIONS(1607), 27, + sym__newline, 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, @@ -137155,60 +139044,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136526] = 5, - ACTIONS(2756), 1, - anon_sym_in, - ACTIONS(2758), 1, + [134776] = 20, + ACTIONS(2066), 1, anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + ACTIONS(2742), 1, + anon_sym_CARET, + ACTIONS(2744), 1, + anon_sym_AMP, + ACTIONS(2760), 1, + anon_sym_PIPE, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 26, - 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, + ACTIONS(2732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2738), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2740), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 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, - [136571] = 5, - ACTIONS(2130), 1, - anon_sym_in, - ACTIONS(2132), 1, - anon_sym_not, + [134851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 26, + ACTIONS(1607), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137216,8 +139116,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, @@ -137235,54 +139137,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136616] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1705), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1707), 28, + [134892] = 11, + ACTIONS(1074), 1, anon_sym_DOT, + ACTIONS(1309), 1, + anon_sym_QMARK_DOT, + ACTIONS(2754), 1, + anon_sym_and, + ACTIONS(2756), 1, + anon_sym_or, + ACTIONS(2758), 1, + anon_sym_PLUS, + ACTIONS(2762), 1, anon_sym_as, + ACTIONS(2764), 1, anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1291), 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(1285), 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, + [134949] = 20, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, + anon_sym_QMARK_DOT, + ACTIONS(2183), 1, + anon_sym_QMARK_LBRACK, + ACTIONS(2734), 1, + anon_sym_STAR_STAR, + ACTIONS(2742), 1, + anon_sym_CARET, + ACTIONS(2744), 1, + anon_sym_AMP, + ACTIONS(2760), 1, + anon_sym_PIPE, + STATE(1309), 1, + sym_argument_list, + STATE(2241), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2732), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2738), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2740), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1321), 5, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1455), 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, - [136657] = 3, + [135024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 4, + ACTIONS(1695), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1853), 28, + ACTIONS(1693), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137311,20 +139276,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136698] = 5, - ACTIONS(2756), 1, - anon_sym_in, - ACTIONS(2760), 1, - anon_sym_not, + [135065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1829), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 26, + ACTIONS(1831), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137332,8 +139293,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, @@ -137351,16 +139314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136743] = 3, + [135106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 4, + ACTIONS(1747), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1685), 28, + ACTIONS(1749), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137389,16 +139352,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136784] = 3, + [135147] = 5, + ACTIONS(2750), 1, + anon_sym_in, + ACTIONS(2766), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1823), 28, + ACTIONS(1607), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137406,10 +139373,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, @@ -137427,34 +139392,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136825] = 7, - ACTIONS(2716), 1, - anon_sym_and, - ACTIONS(2718), 1, - anon_sym_PLUS, + [135192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1463), 4, + ACTIONS(1809), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 5, + ACTIONS(1811), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_or, - ACTIONS(1465), 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, @@ -137469,22 +139430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136874] = 3, + [135233] = 5, + ACTIONS(2748), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 4, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1417), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1857), 28, + ACTIONS(1419), 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, @@ -137492,7 +139456,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, @@ -137507,22 +139470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136915] = 3, + [135278] = 5, + ACTIONS(2748), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 4, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1831), 28, + ACTIONS(1415), 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, @@ -137530,7 +139496,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, @@ -137545,22 +139510,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136956] = 3, + [135323] = 5, + ACTIONS(2748), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 4, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1409), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1861), 28, + ACTIONS(1411), 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, @@ -137568,7 +139536,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, @@ -137583,62 +139550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [136997] = 11, - ACTIONS(1041), 1, - anon_sym_DOT, - ACTIONS(1633), 1, - anon_sym_QMARK_DOT, - ACTIONS(2720), 1, - anon_sym_as, - ACTIONS(2722), 1, - anon_sym_if, - ACTIONS(2724), 1, - anon_sym_and, - ACTIONS(2726), 1, - anon_sym_or, - ACTIONS(2728), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(2764), 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(2762), 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, - [137054] = 3, + [135368] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1763), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1765), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137667,16 +139588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137095] = 3, + [135409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1284), 4, + ACTIONS(1849), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1328), 28, + ACTIONS(1851), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137705,16 +139626,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137136] = 3, + [135450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 4, + ACTIONS(1763), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1787), 28, + ACTIONS(1765), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137743,16 +139664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137177] = 3, + [135491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 4, + ACTIONS(1787), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1787), 28, + ACTIONS(1789), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137781,16 +139702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137218] = 3, + [135532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 4, + ACTIONS(1857), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1783), 28, + ACTIONS(1859), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137819,16 +139740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137259] = 3, + [135573] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1805), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 28, + ACTIONS(1807), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137857,56 +139778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137300] = 5, - ACTIONS(2728), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 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(1426), 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, - [137345] = 3, + [135614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 4, + ACTIONS(1847), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1835), 28, + ACTIONS(1845), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -137935,25 +139816,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137386] = 5, - ACTIONS(2718), 1, - anon_sym_PLUS, + [135655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1426), 4, + ACTIONS(1861), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1424), 25, + ACTIONS(1863), 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, @@ -137961,6 +139839,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, @@ -137975,32 +139854,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137431] = 5, - ACTIONS(2718), 1, + [135696] = 10, + ACTIONS(2746), 1, + anon_sym_and, + ACTIONS(2748), 1, anon_sym_PLUS, + ACTIONS(2768), 1, + anon_sym_as, + ACTIONS(2770), 1, + anon_sym_if, + ACTIONS(2772), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1442), 4, + ACTIONS(1285), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1291), 19, 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, @@ -138015,16 +139899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137476] = 3, + [135751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 4, + ACTIONS(1843), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1791), 28, + ACTIONS(1841), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138053,16 +139937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137517] = 3, + [135792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 4, + ACTIONS(1839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 28, + ACTIONS(1837), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138091,30 +139975,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137558] = 3, + [135833] = 6, + ACTIONS(2746), 1, + anon_sym_and, + ACTIONS(2748), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 4, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1413), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1869), 28, + ACTIONS(1415), 24, 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, @@ -138129,131 +140016,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137599] = 20, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2161), 1, + [135880] = 11, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1309), 1, + anon_sym_QMARK_DOT, + ACTIONS(2754), 1, + anon_sym_and, + ACTIONS(2756), 1, + anon_sym_or, + ACTIONS(2758), 1, + anon_sym_PLUS, + ACTIONS(2762), 1, + anon_sym_as, + ACTIONS(2764), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2776), 11, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2163), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(2738), 1, - anon_sym_PIPE, - ACTIONS(2740), 1, - anon_sym_AMP, - ACTIONS(2742), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2774), 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, + [135937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2730), 2, + ACTIONS(1815), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2734), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2736), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1328), 5, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1813), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - [137674] = 20, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - ACTIONS(2161), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2163), 1, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2738), 1, - anon_sym_PIPE, - ACTIONS(2740), 1, - anon_sym_AMP, - ACTIONS(2742), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2730), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2734), 2, + anon_sym_QMARK_DOT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2736), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2744), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1312), 5, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1328), 5, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - [137749] = 5, - ACTIONS(2718), 1, - anon_sym_PLUS, + anon_sym_is, + anon_sym_QMARK_LBRACK, + [135978] = 5, + ACTIONS(2778), 1, + anon_sym_EQ, + STATE(1427), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1446), 4, + ACTIONS(1465), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1444), 25, + ACTIONS(1463), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138265,6 +140125,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, @@ -138279,16 +140140,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137794] = 3, + [136023] = 5, + ACTIONS(2141), 1, + anon_sym_in, + ACTIONS(2143), 1, + anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1865), 28, + ACTIONS(1607), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138296,10 +140161,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, @@ -138317,16 +140180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137835] = 3, + [136068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 4, + ACTIONS(1799), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1779), 28, + ACTIONS(1801), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138355,32 +140218,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137876] = 5, - ACTIONS(2766), 1, - anon_sym_EQ, - STATE(1465), 1, - aux_sym_union_type_repeat1, + [136109] = 8, + ACTIONS(2746), 1, + anon_sym_and, + ACTIONS(2748), 1, + anon_sym_PLUS, + ACTIONS(2772), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1299), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 26, - anon_sym_DOT, + ACTIONS(1301), 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_PLUS, anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -138395,44 +140261,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [137921] = 13, - ACTIONS(2161), 1, + [136160] = 5, + ACTIONS(2758), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 12, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2163), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(1413), 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, + [136205] = 6, + ACTIONS(2746), 1, + anon_sym_and, + ACTIONS(2748), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2730), 2, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1497), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2734), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2736), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1499), 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_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, @@ -138443,65 +140341,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [137982] = 14, - ACTIONS(2161), 1, + anon_sym_QMARK_LBRACK, + [136252] = 11, + ACTIONS(1074), 1, + anon_sym_DOT, + ACTIONS(1309), 1, + anon_sym_QMARK_DOT, + ACTIONS(2754), 1, + anon_sym_and, + ACTIONS(2756), 1, + anon_sym_or, + ACTIONS(2758), 1, + anon_sym_PLUS, + ACTIONS(2762), 1, + anon_sym_as, + ACTIONS(2764), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2782), 11, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2163), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_DQUOTE, + anon_sym_DASH, + anon_sym_TILDE, + sym_float, + ACTIONS(2780), 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, + [136309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2730), 2, + ACTIONS(1753), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2734), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2736), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1751), 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, - [138045] = 3, + anon_sym_QMARK_LBRACK, + [136350] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 4, + ACTIONS(1767), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1847), 28, + ACTIONS(1769), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138530,16 +140464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138086] = 3, + [136391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 4, + ACTIONS(1785), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1775), 28, + ACTIONS(1783), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138568,117 +140502,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138127] = 15, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, - anon_sym_STAR_STAR, - ACTIONS(2742), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, + [136432] = 5, + ACTIONS(2758), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2730), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2734), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2736), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 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, - [138192] = 16, - ACTIONS(2161), 1, + STATE(1028), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1411), 12, + sym_string_start, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2163), 1, anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, - ACTIONS(2740), 1, - anon_sym_AMP, - ACTIONS(2742), 1, - anon_sym_CARET, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1324), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2730), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2734), 2, - anon_sym_PLUS, + anon_sym_QMARK_DOT, + anon_sym_DQUOTE, anon_sym_DASH, - ACTIONS(2736), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2744), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1322), 13, + anon_sym_TILDE, + sym_float, + ACTIONS(1409), 17, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_in, + 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_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_is, - [138259] = 3, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + sym_undefined, + [136477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 4, + ACTIONS(1827), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1771), 28, + ACTIONS(1825), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138707,16 +140580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138300] = 3, + [136518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 4, + ACTIONS(1835), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 28, + ACTIONS(1833), 28, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138745,159 +140618,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138341] = 12, - ACTIONS(2161), 1, + [136559] = 20, + ACTIONS(2066), 1, + anon_sym_not, + ACTIONS(2070), 1, + anon_sym_is, + ACTIONS(2167), 1, anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, ACTIONS(2169), 1, + anon_sym_LBRACK, + ACTIONS(2175), 1, anon_sym_QMARK_DOT, - ACTIONS(2177), 1, + ACTIONS(2183), 1, anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, + ACTIONS(2734), 1, anon_sym_STAR_STAR, - STATE(1282), 1, + ACTIONS(2742), 1, + anon_sym_CARET, + ACTIONS(2744), 1, + anon_sym_AMP, + ACTIONS(2760), 1, + anon_sym_PIPE, + STATE(1309), 1, sym_argument_list, - STATE(2215), 1, + STATE(2046), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1324), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2730), 2, + ACTIONS(2732), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(2736), 2, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1322), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [138400] = 10, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, - anon_sym_STAR_STAR, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1324), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1322), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2738), 2, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(2740), 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, - [138455] = 10, - ACTIONS(2161), 1, - anon_sym_LPAREN, - ACTIONS(2163), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_QMARK_DOT, - ACTIONS(2177), 1, - anon_sym_QMARK_LBRACK, - ACTIONS(2732), 1, - anon_sym_STAR_STAR, - STATE(1282), 1, - sym_argument_list, - STATE(2215), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1324), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1322), 21, + ACTIONS(1321), 5, anon_sym_DOT, anon_sym_as, anon_sym_if, - anon_sym_in, - 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, + ACTIONS(1455), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [138510] = 3, + [136634] = 4, + STATE(2047), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1761), 28, + ACTIONS(1607), 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, @@ -138920,22 +140711,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138551] = 3, + [136676] = 4, + ACTIONS(2778), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 4, + ACTIONS(1465), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1757), 28, + ACTIONS(1463), 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, @@ -138958,18 +140749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138592] = 4, - ACTIONS(2766), 1, - anon_sym_EQ, + [136718] = 4, + STATE(2051), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 4, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 26, + ACTIONS(1617), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -138996,60 +140787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138634] = 8, - ACTIONS(2771), 1, - anon_sym_not, - ACTIONS(2777), 1, - anon_sym_is, - STATE(2020), 1, + [136760] = 4, + STATE(2051), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 2, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2774), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2768), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1543), 19, - 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_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_QMARK_LBRACK, - [138684] = 4, - STATE(2023), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1599), 26, + ACTIONS(1617), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139076,18 +140825,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138726] = 4, - STATE(2020), 1, + [136802] = 4, + STATE(2051), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 26, + ACTIONS(1617), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139114,18 +140863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138768] = 4, - STATE(2020), 1, + [136844] = 4, + STATE(2051), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1619), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 26, + ACTIONS(1617), 26, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139152,18 +140901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138810] = 4, - STATE(2020), 1, - aux_sym_comparison_operator_repeat1, + [136886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 26, + ACTIONS(1607), 27, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139190,27 +140938,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138852] = 4, - STATE(2020), 1, + [136926] = 8, + ACTIONS(2787), 1, + anon_sym_not, + ACTIONS(2793), 1, + anon_sym_is, + STATE(2051), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 4, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2790), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1665), 26, + ACTIONS(2784), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1627), 19, 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, @@ -139222,26 +140979,21 @@ 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, - [138894] = 5, - ACTIONS(2130), 1, + [136976] = 5, + ACTIONS(2141), 1, anon_sym_in, - ACTIONS(2780), 1, + ACTIONS(2796), 1, anon_sym_not, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 4, + ACTIONS(1605), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1599), 24, + ACTIONS(1607), 24, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -139266,21 +141018,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_is, anon_sym_QMARK_LBRACK, - [138937] = 5, - STATE(1041), 1, + [137019] = 5, + STATE(1036), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2782), 2, + ACTIONS(2798), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1469), 4, + ACTIONS(1459), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 23, + ACTIONS(1461), 23, anon_sym_COMMA, anon_sym_COLON, anon_sym_DASH_GT, @@ -139304,13 +141056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138980] = 4, - ACTIONS(2786), 1, + [137062] = 4, + ACTIONS(2802), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2788), 12, + ACTIONS(2804), 12, sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, @@ -139323,7 +141075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_TILDE, sym_float, - ACTIONS(2784), 13, + ACTIONS(2800), 13, anon_sym_DOT, anon_sym_lambda, anon_sym_all, @@ -139337,41 +141089,41 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_none, sym_undefined, - [139017] = 14, + [137099] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2798), 1, + ACTIONS(2814), 1, anon_sym_RBRACE, - ACTIONS(2804), 1, + ACTIONS(2820), 1, sym_float, - STATE(1364), 1, + STATE(1398), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1399), 1, sym_string, - STATE(2778), 1, + STATE(2817), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139379,31 +141131,31 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139073] = 14, + [137155] = 14, ACTIONS(539), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2812), 1, + ACTIONS(2828), 1, anon_sym_RBRACK, - ACTIONS(2814), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2834), 1, sym_float, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + STATE(1622), 1, sym_dotted_name, - STATE(2800), 1, + STATE(1623), 1, + sym_string, + STATE(2814), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, @@ -139413,7 +141165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139421,41 +141173,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139129] = 14, - ACTIONS(431), 1, + [137211] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2840), 1, + anon_sym_RPAREN, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2820), 1, - anon_sym_RBRACE, - STATE(1364), 1, + STATE(1913), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1915), 1, sym_string, - STATE(2723), 1, + STATE(2665), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139463,41 +141215,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139185] = 14, - ACTIONS(431), 1, + [137267] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2822), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2852), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1915), 1, sym_string, - STATE(2716), 1, + STATE(2669), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139505,41 +141257,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139241] = 14, - ACTIONS(784), 1, + [137323] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_RPAREN, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2854), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2640), 1, + STATE(1399), 1, + sym_string, + STATE(2871), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139547,8 +141299,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139297] = 14, - ACTIONS(539), 1, + [137379] = 14, + ACTIONS(431), 1, sym_string_start, ACTIONS(2806), 1, sym_identifier, @@ -139556,32 +141308,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2840), 1, - anon_sym_RBRACK, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + ACTIONS(2856), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2707), 1, + STATE(1399), 1, + sym_string, + STATE(2839), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139589,72 +141341,83 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139353] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(621), 12, + [137435] = 14, + ACTIONS(55), 1, sym_string_start, + ACTIONS(2858), 1, + sym_identifier, + ACTIONS(2860), 1, anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, + ACTIONS(2864), 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(2870), 1, sym_float, - ACTIONS(2842), 13, - anon_sym_DOT, - anon_sym_lambda, - anon_sym_all, - anon_sym_any, - anon_sym_filter, - anon_sym_map, - anon_sym_not, + STATE(1775), 1, + sym_string, + STATE(1776), 1, + sym_dotted_name, + STATE(2711), 1, + sym_type, + STATE(3161), 1, + sym_schema_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2868), 3, sym_integer, - sym_identifier, sym_true, sym_false, - sym_none, - sym_undefined, - [139387] = 14, - ACTIONS(431), 1, + ACTIONS(2866), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1777), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [137491] = 14, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2874), 1, + anon_sym_COLON, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2844), 1, - anon_sym_RBRACE, - STATE(1364), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1291), 1, sym_string, - STATE(2773), 1, + STATE(2846), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139662,41 +141425,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139443] = 14, + [137547] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2846), 1, + ACTIONS(2888), 1, anon_sym_RBRACE, - STATE(1364), 1, + STATE(1398), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1399), 1, sym_string, - STATE(2790), 1, + STATE(2826), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139704,8 +141467,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139499] = 14, - ACTIONS(539), 1, + [137603] = 14, + ACTIONS(431), 1, sym_string_start, ACTIONS(2806), 1, sym_identifier, @@ -139713,32 +141476,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2848), 1, - anon_sym_RBRACK, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + ACTIONS(2890), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2840), 1, + STATE(1399), 1, + sym_string, + STATE(2736), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139746,41 +141509,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139555] = 14, - ACTIONS(784), 1, + [137659] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2850), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2892), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2625), 1, + STATE(1399), 1, + sym_string, + STATE(2754), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139788,41 +141551,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139611] = 14, - ACTIONS(784), 1, + [137715] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2852), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2894), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2642), 1, + STATE(1399), 1, + sym_string, + STATE(2833), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139830,8 +141593,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139667] = 14, - ACTIONS(539), 1, + [137771] = 14, + ACTIONS(431), 1, sym_string_start, ACTIONS(2806), 1, sym_identifier, @@ -139839,32 +141602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2854), 1, - anon_sym_RBRACK, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + ACTIONS(2896), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2731), 1, + STATE(1399), 1, + sym_string, + STATE(2791), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139872,41 +141635,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139723] = 14, - ACTIONS(55), 1, + [137827] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2856), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2858), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2820), 1, sym_float, - STATE(1783), 1, + ACTIONS(2898), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1399), 1, sym_string, - STATE(2699), 1, + STATE(2755), 1, sym_type, - STATE(3013), 1, - sym_schema_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139914,41 +141677,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139779] = 14, - ACTIONS(431), 1, + [137883] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2870), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2900), 1, + anon_sym_RBRACK, + STATE(1622), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1623), 1, sym_string, - STATE(2764), 1, + STATE(2883), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139956,41 +141719,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139835] = 14, - ACTIONS(503), 1, + [137939] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2874), 1, - anon_sym_COLON, - ACTIONS(2876), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2820), 1, sym_float, - STATE(1215), 1, + ACTIONS(2902), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1399), 1, sym_string, - STATE(2752), 1, + STATE(2761), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -139998,41 +141761,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139891] = 14, - ACTIONS(431), 1, + [137995] = 14, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2888), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2904), 1, + anon_sym_COLON, + STATE(1290), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1291), 1, sym_string, - STATE(2794), 1, + STATE(2785), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140040,41 +141803,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [139947] = 14, - ACTIONS(784), 1, + [138051] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2890), 1, + ACTIONS(2906), 1, anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + STATE(1913), 1, sym_dotted_name, - STATE(2639), 1, + STATE(1915), 1, + sym_string, + STATE(2657), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140082,31 +141845,31 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140003] = 14, + [138107] = 14, ACTIONS(539), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2892), 1, + ACTIONS(2908), 1, anon_sym_RBRACK, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + STATE(1622), 1, sym_dotted_name, - STATE(2704), 1, + STATE(1623), 1, + sym_string, + STATE(2784), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, @@ -140116,7 +141879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140124,41 +141887,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140059] = 14, - ACTIONS(431), 1, + [138163] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2894), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2910), 1, + anon_sym_RBRACK, + STATE(1622), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1623), 1, sym_string, - STATE(2784), 1, + STATE(2770), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140166,41 +141929,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140115] = 14, - ACTIONS(503), 1, + [138219] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2896), 1, - anon_sym_COLON, - STATE(1215), 1, + ACTIONS(2912), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1915), 1, sym_string, - STATE(2857), 1, + STATE(2672), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140208,41 +141971,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140171] = 14, - ACTIONS(503), 1, + [138275] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2898), 1, - anon_sym_COLON, - STATE(1215), 1, + ACTIONS(2914), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1915), 1, sym_string, - STATE(2724), 1, + STATE(2652), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140250,83 +142013,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140227] = 14, - ACTIONS(784), 1, + [138331] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2900), 1, + ACTIONS(2916), 1, anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + STATE(1913), 1, sym_dotted_name, - STATE(2637), 1, - sym_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2836), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2834), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1895), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [140283] = 14, - ACTIONS(539), 1, - sym_string_start, - ACTIONS(2806), 1, - sym_identifier, - ACTIONS(2808), 1, - anon_sym_LPAREN, - ACTIONS(2810), 1, - anon_sym_LBRACK, - ACTIONS(2814), 1, - anon_sym_LBRACE, - ACTIONS(2818), 1, - sym_float, - ACTIONS(2902), 1, - anon_sym_RBRACK, - STATE(1481), 1, + STATE(1915), 1, sym_string, - STATE(1482), 1, - sym_dotted_name, - STATE(2846), 1, + STATE(2662), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140334,41 +142055,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140339] = 14, - ACTIONS(784), 1, + [138387] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2904), 1, + ACTIONS(2918), 1, anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + STATE(1913), 1, sym_dotted_name, - STATE(2624), 1, + STATE(1915), 1, + sym_string, + STATE(2666), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140376,41 +142097,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140395] = 14, - ACTIONS(431), 1, + [138443] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2906), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2920), 1, + anon_sym_RBRACK, + STATE(1622), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1623), 1, sym_string, - STATE(2834), 1, + STATE(2732), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140418,41 +142139,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140451] = 14, - ACTIONS(431), 1, + [138499] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2908), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2922), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1915), 1, sym_string, - STATE(2750), 1, + STATE(2673), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140460,41 +142181,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140507] = 14, - ACTIONS(431), 1, + [138555] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2910), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2924), 1, + anon_sym_RBRACK, + STATE(1622), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1623), 1, sym_string, - STATE(2793), 1, + STATE(2862), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140502,41 +142223,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140563] = 14, - ACTIONS(503), 1, + [138611] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2912), 1, - anon_sym_COLON, - STATE(1215), 1, + ACTIONS(2926), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1915), 1, sym_string, - STATE(2851), 1, + STATE(2671), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140544,41 +142265,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140619] = 14, - ACTIONS(784), 1, + [138667] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2914), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2928), 1, + anon_sym_RBRACK, + STATE(1622), 1, sym_dotted_name, - STATE(2649), 1, + STATE(1623), 1, + sym_string, + STATE(2806), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140586,41 +142307,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140675] = 14, - ACTIONS(539), 1, + [138723] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2916), 1, - anon_sym_RBRACK, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + ACTIONS(2930), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(2765), 1, + STATE(1915), 1, + sym_string, + STATE(2656), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140628,8 +142349,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140731] = 14, - ACTIONS(503), 1, + [138779] = 14, + ACTIONS(461), 1, sym_string_start, ACTIONS(2872), 1, sym_identifier, @@ -140641,13 +142362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - ACTIONS(2918), 1, + ACTIONS(2932), 1, anon_sym_COLON, - STATE(1215), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2729), 1, + STATE(2870), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -140662,7 +142383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140670,41 +142391,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140787] = 14, - ACTIONS(431), 1, + [138835] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2920), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2934), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1915), 1, sym_string, - STATE(2820), 1, + STATE(2658), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140712,41 +142433,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140843] = 14, - ACTIONS(503), 1, + [138891] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2922), 1, - anon_sym_COLON, - STATE(1215), 1, + ACTIONS(2936), 1, + anon_sym_RBRACK, + STATE(1622), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1623), 1, sym_string, - STATE(2721), 1, + STATE(2729), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140754,41 +142475,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140899] = 14, - ACTIONS(431), 1, + [138947] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2924), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2938), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1915), 1, sym_string, - STATE(2847), 1, + STATE(2667), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140796,8 +142517,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [140955] = 14, - ACTIONS(539), 1, + [139003] = 14, + ACTIONS(431), 1, sym_string_start, ACTIONS(2806), 1, sym_identifier, @@ -140805,32 +142526,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2926), 1, - anon_sym_RBRACK, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + ACTIONS(2940), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2808), 1, + STATE(1399), 1, + sym_string, + STATE(2865), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140838,41 +142559,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141011] = 14, - ACTIONS(784), 1, + [139059] = 14, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2928), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2942), 1, + anon_sym_COLON, + STATE(1290), 1, sym_dotted_name, - STATE(2630), 1, + STATE(1291), 1, + sym_string, + STATE(2787), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140880,41 +142601,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141067] = 14, - ACTIONS(431), 1, + [139115] = 14, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2930), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2944), 1, + anon_sym_COLON, + STATE(1290), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1291), 1, sym_string, - STATE(2848), 1, + STATE(2853), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140922,41 +142643,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141123] = 14, - ACTIONS(784), 1, + [139171] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2932), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2946), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2641), 1, + STATE(1399), 1, + sym_string, + STATE(2801), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -140964,41 +142685,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141179] = 14, - ACTIONS(539), 1, + [139227] = 14, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2934), 1, - anon_sym_RBRACK, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + ACTIONS(2948), 1, + anon_sym_COLON, + STATE(1290), 1, sym_dotted_name, - STATE(2785), 1, + STATE(1291), 1, + sym_string, + STATE(2832), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141006,41 +142727,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141235] = 14, - ACTIONS(431), 1, + [139283] = 14, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2936), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2950), 1, + anon_sym_COLON, + STATE(1290), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1291), 1, sym_string, - STATE(2759), 1, + STATE(2786), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141048,41 +142769,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141291] = 14, - ACTIONS(784), 1, + [139339] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2938), 1, + ACTIONS(2952), 1, anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + STATE(1913), 1, sym_dotted_name, - STATE(2633), 1, + STATE(1915), 1, + sym_string, + STATE(2654), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141090,41 +142811,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141347] = 14, - ACTIONS(431), 1, + [139395] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2940), 1, - anon_sym_RBRACE, - STATE(1364), 1, + ACTIONS(2954), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1915), 1, sym_string, - STATE(2737), 1, + STATE(2678), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141132,41 +142853,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141403] = 14, - ACTIONS(784), 1, + [139451] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2942), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2956), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2635), 1, + STATE(1399), 1, + sym_string, + STATE(2807), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141174,8 +142895,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141459] = 14, - ACTIONS(503), 1, + [139507] = 14, + ACTIONS(461), 1, sym_string_start, ACTIONS(2872), 1, sym_identifier, @@ -141187,13 +142908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - ACTIONS(2944), 1, + ACTIONS(2958), 1, anon_sym_COLON, - STATE(1215), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2823), 1, + STATE(2745), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -141208,7 +142929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141216,8 +142937,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141515] = 14, - ACTIONS(503), 1, + [139563] = 14, + ACTIONS(461), 1, sym_string_start, ACTIONS(2872), 1, sym_identifier, @@ -141229,13 +142950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - ACTIONS(2946), 1, + ACTIONS(2960), 1, anon_sym_COLON, - STATE(1215), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2839), 1, + STATE(2891), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -141250,7 +142971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141258,41 +142979,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141571] = 14, - ACTIONS(784), 1, + [139619] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2948), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2962), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2628), 1, + STATE(1399), 1, + sym_string, + STATE(2830), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141300,41 +143021,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141627] = 14, - ACTIONS(784), 1, + [139675] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2950), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2964), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2627), 1, + STATE(1399), 1, + sym_string, + STATE(2850), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141342,41 +143063,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141683] = 14, + [139731] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2952), 1, + ACTIONS(2966), 1, anon_sym_RBRACE, - STATE(1364), 1, + STATE(1398), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1399), 1, sym_string, - STATE(2768), 1, + STATE(2825), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141384,41 +143105,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141739] = 14, - ACTIONS(503), 1, + [139787] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2954), 1, - anon_sym_COLON, - STATE(1215), 1, + ACTIONS(2968), 1, + anon_sym_RPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1915), 1, sym_string, - STATE(2760), 1, + STATE(2668), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141426,41 +143147,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141795] = 14, + [139843] = 14, ACTIONS(431), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2956), 1, + ACTIONS(2970), 1, anon_sym_RBRACE, - STATE(1364), 1, + STATE(1398), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1399), 1, sym_string, - STATE(2853), 1, + STATE(2738), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141468,41 +143189,41 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141851] = 14, - ACTIONS(784), 1, + [139899] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2958), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2972), 1, + anon_sym_RBRACK, + STATE(1622), 1, sym_dotted_name, - STATE(2629), 1, + STATE(1623), 1, + sym_string, + STATE(2772), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141510,41 +143231,72 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141907] = 14, - ACTIONS(784), 1, + [139955] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(649), 12, sym_string_start, - ACTIONS(2824), 1, + 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(2974), 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, - ACTIONS(2826), 1, + sym_true, + sym_false, + sym_none, + sym_undefined, + [139989] = 14, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2806), 1, + sym_identifier, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2960), 1, - anon_sym_RPAREN, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + ACTIONS(2976), 1, + anon_sym_RBRACE, + STATE(1398), 1, sym_dotted_name, - STATE(2638), 1, + STATE(1399), 1, + sym_string, + STATE(2752), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141552,39 +143304,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [141963] = 13, - ACTIONS(539), 1, + [140045] = 13, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2978), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2980), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2984), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2990), 1, sym_float, - STATE(1481), 1, + STATE(744), 1, + sym_type, + STATE(879), 1, sym_string, - STATE(1482), 1, + STATE(880), 1, sym_dotted_name, - STATE(2860), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2988), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2986), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(882), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141592,80 +143344,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142016] = 14, - ACTIONS(906), 1, + [140098] = 13, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(2962), 1, + ACTIONS(2992), 1, sym_identifier, - ACTIONS(2964), 1, + ACTIONS(2994), 1, anon_sym_LPAREN, - ACTIONS(2966), 1, + ACTIONS(2996), 1, anon_sym_LBRACK, - ACTIONS(2968), 1, + ACTIONS(2998), 1, anon_sym_LBRACE, - ACTIONS(2974), 1, + ACTIONS(3004), 1, sym_float, - STATE(1539), 1, + STATE(713), 1, sym_type, - STATE(1665), 1, + STATE(883), 1, sym_string, - STATE(1666), 1, + STATE(896), 1, sym_dotted_name, - STATE(1701), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2972), 3, + ACTIONS(3002), 3, sym_integer, sym_true, sym_false, - ACTIONS(2970), 5, + ACTIONS(3000), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1667), 6, + STATE(878), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [142071] = 13, - ACTIONS(1061), 1, + [140151] = 13, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(2976), 1, + ACTIONS(2992), 1, sym_identifier, - ACTIONS(2978), 1, + ACTIONS(2994), 1, anon_sym_LPAREN, - ACTIONS(2980), 1, + ACTIONS(2996), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2998), 1, anon_sym_LBRACE, - ACTIONS(2988), 1, + ACTIONS(3004), 1, sym_float, - STATE(1004), 1, + STATE(747), 1, sym_type, - STATE(1050), 1, + STATE(883), 1, sym_string, - STATE(1052), 1, + STATE(896), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 3, + ACTIONS(3002), 3, sym_integer, sym_true, sym_false, - ACTIONS(2984), 5, + ACTIONS(3000), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1058), 7, + STATE(878), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141673,39 +143424,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142124] = 13, - ACTIONS(55), 1, + [140204] = 13, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(3006), 1, + sym_identifier, + ACTIONS(3008), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(3018), 1, sym_float, - ACTIONS(2990), 1, - sym_identifier, - STATE(1783), 1, - sym_dotted_name, - STATE(1784), 1, - sym_string, - STATE(2700), 1, + STATE(1050), 1, sym_type, + STATE(1057), 1, + sym_string, + STATE(1067), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(3016), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(3014), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1069), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141713,39 +143464,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142177] = 13, - ACTIONS(784), 1, + [140257] = 13, + ACTIONS(902), 1, sym_string_start, - ACTIONS(2830), 1, + ACTIONS(3020), 1, + sym_identifier, + ACTIONS(3022), 1, + anon_sym_LPAREN, + ACTIONS(3024), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(3026), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(3032), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1613), 1, + STATE(1585), 1, sym_type, - STATE(1806), 1, + STATE(1654), 1, sym_string, - STATE(1920), 1, + STATE(1655), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(3030), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(3028), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1656), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141753,114 +143504,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142230] = 13, - ACTIONS(906), 1, + [140310] = 14, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2962), 1, - sym_identifier, - ACTIONS(2964), 1, - anon_sym_LPAREN, - ACTIONS(2966), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2968), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2974), 1, + ACTIONS(2870), 1, sym_float, - STATE(1521), 1, + ACTIONS(3034), 1, + sym_identifier, + ACTIONS(3036), 1, + anon_sym_LPAREN, + STATE(1602), 1, sym_type, - STATE(1665), 1, + STATE(1662), 1, + sym_union_type, + STATE(1775), 1, sym_string, - STATE(1666), 1, + STATE(1776), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2972), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2970), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1667), 7, + STATE(1777), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [142283] = 8, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(1294), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1663), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 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, - [142326] = 13, - ACTIONS(784), 1, + [140365] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2830), 1, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1609), 1, - sym_type, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + STATE(1290), 1, sym_dotted_name, + STATE(1291), 1, + sym_string, + STATE(2750), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141868,39 +143585,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142379] = 13, - ACTIONS(1113), 1, + [140418] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2996), 1, - sym_identifier, - ACTIONS(2998), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(3000), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(3008), 1, + ACTIONS(2870), 1, sym_float, - STATE(352), 1, - sym_type, - STATE(546), 1, - sym_dotted_name, - STATE(547), 1, + ACTIONS(3038), 1, + sym_identifier, + STATE(1775), 1, sym_string, + STATE(1776), 1, + sym_dotted_name, + STATE(2706), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(3004), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(545), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141908,74 +143625,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142432] = 8, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(1294), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1663), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 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, - [142475] = 13, - ACTIONS(503), 1, + [140471] = 13, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(3006), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(3008), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(3018), 1, sym_float, - STATE(1215), 1, - sym_dotted_name, - STATE(1238), 1, - sym_string, - STATE(2644), 1, + STATE(1055), 1, sym_type, + STATE(1057), 1, + sym_string, + STATE(1067), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(3016), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(3014), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1069), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -141983,80 +143665,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142528] = 14, - ACTIONS(503), 1, + [140524] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2878), 1, + ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(3010), 1, + ACTIONS(3038), 1, sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1215), 1, - sym_dotted_name, - STATE(1238), 1, + STATE(1775), 1, sym_string, - STATE(2005), 1, + STATE(1776), 1, + sym_dotted_name, + STATE(2818), 1, sym_type, - STATE(2019), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 6, + STATE(1777), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [142583] = 13, - ACTIONS(784), 1, + [140577] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2830), 1, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1606), 1, - sym_type, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + STATE(1290), 1, sym_dotted_name, + STATE(1291), 1, + sym_string, + STATE(2679), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142064,39 +143745,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142636] = 13, - ACTIONS(539), 1, + [140630] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2806), 1, - sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2870), 1, sym_float, - STATE(1481), 1, + ACTIONS(3038), 1, + sym_identifier, + STATE(1775), 1, sym_string, - STATE(1482), 1, + STATE(1776), 1, sym_dotted_name, - STATE(2781), 1, + STATE(2685), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142104,39 +143785,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142689] = 13, - ACTIONS(55), 1, + [140683] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2858), 1, - anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2990), 1, + ACTIONS(3040), 1, sym_identifier, - STATE(1783), 1, + ACTIONS(3042), 1, + anon_sym_LPAREN, + STATE(1499), 1, + sym_type, + STATE(1622), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1623), 1, sym_string, - STATE(2698), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142144,39 +143825,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142742] = 13, - ACTIONS(503), 1, + [140736] = 13, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(2992), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2994), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2996), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2998), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(3004), 1, sym_float, - STATE(1215), 1, - sym_dotted_name, - STATE(1238), 1, - sym_string, - STATE(2742), 1, + STATE(730), 1, sym_type, + STATE(883), 1, + sym_string, + STATE(896), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(3002), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(3000), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(878), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142184,79 +143865,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142795] = 13, - ACTIONS(55), 1, + [140789] = 14, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2858), 1, - anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2990), 1, + ACTIONS(3044), 1, sym_identifier, - STATE(1783), 1, + ACTIONS(3046), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1291), 1, sym_string, - STATE(2664), 1, + STATE(2030), 1, sym_type, + STATE(2045), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1285), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [142848] = 13, - ACTIONS(55), 1, + [140844] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2822), 1, + sym_identifier, + ACTIONS(2824), 1, + anon_sym_LPAREN, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1585), 1, - sym_type, - STATE(1783), 1, + STATE(1622), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1623), 1, sym_string, + STATE(2834), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142264,39 +143946,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142901] = 13, - ACTIONS(784), 1, + [140897] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2830), 1, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1658), 1, - sym_type, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + STATE(1290), 1, sym_dotted_name, + STATE(1291), 1, + sym_string, + STATE(2771), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142304,39 +143986,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [142954] = 13, - ACTIONS(1061), 1, + [140950] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2976), 1, - sym_identifier, - ACTIONS(2978), 1, - anon_sym_LPAREN, - ACTIONS(2980), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2988), 1, + ACTIONS(2870), 1, sym_float, - STATE(1013), 1, + ACTIONS(3034), 1, + sym_identifier, + ACTIONS(3036), 1, + anon_sym_LPAREN, + STATE(1498), 1, sym_type, - STATE(1050), 1, + STATE(1775), 1, sym_string, - STATE(1052), 1, + STATE(1776), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2984), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1058), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142344,39 +144026,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143007] = 13, - ACTIONS(503), 1, + [141003] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2850), 1, sym_float, - STATE(1215), 1, + STATE(1913), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1915), 1, sym_string, - STATE(2745), 1, + STATE(2687), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142384,39 +144066,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143060] = 13, - ACTIONS(503), 1, + [141056] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2878), 1, + ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(3010), 1, + ACTIONS(3038), 1, sym_identifier, - ACTIONS(3018), 1, - anon_sym_LPAREN, - STATE(1215), 1, - sym_dotted_name, - STATE(1238), 1, + STATE(1775), 1, sym_string, - STATE(1718), 1, + STATE(1776), 1, + sym_dotted_name, + STATE(2681), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142424,39 +144106,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143113] = 13, + [141109] = 13, ACTIONS(55), 1, sym_string_start, ACTIONS(2860), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2862), 1, + anon_sym_LBRACK, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3038), 1, sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1680), 1, - sym_type, - STATE(1783), 1, - sym_dotted_name, - STATE(1784), 1, + STATE(1775), 1, sym_string, + STATE(1776), 1, + sym_dotted_name, + STATE(2718), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142464,120 +144146,190 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143166] = 14, - ACTIONS(503), 1, + [141162] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2878), 1, + ACTIONS(2822), 1, + sym_identifier, + ACTIONS(2824), 1, + anon_sym_LPAREN, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3018), 1, - anon_sym_LPAREN, - STATE(1215), 1, + STATE(1622), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1623), 1, sym_string, - STATE(1597), 1, + STATE(2866), 1, sym_type, - STATE(1630), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 6, + STATE(1621), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143221] = 13, - ACTIONS(431), 1, + [141215] = 8, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(1301), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1619), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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, + [141258] = 8, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(1301), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1619), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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, + [141301] = 14, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2794), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(3020), 1, + ACTIONS(3040), 1, sym_identifier, - ACTIONS(3022), 1, + ACTIONS(3042), 1, anon_sym_LPAREN, - STATE(1290), 1, + STATE(1466), 1, sym_type, - STATE(1364), 1, + STATE(1504), 1, + sym_union_type, + STATE(1622), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1623), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1621), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143274] = 13, - ACTIONS(784), 1, + [141356] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2886), 1, sym_float, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + STATE(1290), 1, sym_dotted_name, - STATE(2671), 1, + STATE(1291), 1, + sym_string, + STATE(2674), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142585,25 +144337,27 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143327] = 13, - ACTIONS(503), 1, + [141409] = 14, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_LPAREN, ACTIONS(2878), 1, anon_sym_LBRACK, ACTIONS(2880), 1, anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - STATE(1215), 1, + ACTIONS(3044), 1, + sym_identifier, + ACTIONS(3048), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2726), 1, + STATE(1619), 1, sym_type, + STATE(1650), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -142617,47 +144371,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143380] = 13, - ACTIONS(55), 1, + [141464] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3044), 1, sym_identifier, - ACTIONS(3016), 1, + ACTIONS(3048), 1, anon_sym_LPAREN, - STATE(1531), 1, - sym_type, - STATE(1783), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1291), 1, sym_string, + STATE(1677), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142665,8 +144418,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143433] = 13, - ACTIONS(503), 1, + [141517] = 13, + ACTIONS(461), 1, sym_string_start, ACTIONS(2872), 1, sym_identifier, @@ -142678,11 +144431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - STATE(1215), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2748), 1, + STATE(2779), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -142697,7 +144450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142705,39 +144458,74 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143486] = 13, - ACTIONS(1113), 1, + [141570] = 8, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(1301), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1619), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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, + [141613] = 13, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(2996), 1, + ACTIONS(2978), 1, sym_identifier, - ACTIONS(2998), 1, + ACTIONS(2980), 1, anon_sym_LPAREN, - ACTIONS(3000), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2984), 1, anon_sym_LBRACE, - ACTIONS(3008), 1, + ACTIONS(2990), 1, sym_float, - STATE(318), 1, + STATE(704), 1, sym_type, - STATE(546), 1, - sym_dotted_name, - STATE(547), 1, + STATE(879), 1, sym_string, + STATE(880), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, + ACTIONS(2988), 3, sym_integer, sym_true, sym_false, - ACTIONS(3004), 5, + ACTIONS(2986), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(545), 7, + STATE(882), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142745,39 +144533,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143539] = 13, - ACTIONS(55), 1, + [141666] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2858), 1, - anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2990), 1, + ACTIONS(3050), 1, sym_identifier, - STATE(1783), 1, + ACTIONS(3052), 1, + anon_sym_LPAREN, + STATE(1300), 1, + sym_type, + STATE(1398), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1399), 1, sym_string, - STATE(2688), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142785,39 +144573,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143592] = 13, - ACTIONS(503), 1, + [141719] = 13, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(2878), 1, + ACTIONS(2978), 1, + sym_identifier, + ACTIONS(2980), 1, + anon_sym_LPAREN, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2984), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2990), 1, sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3018), 1, - anon_sym_LPAREN, - STATE(1215), 1, - sym_dotted_name, - STATE(1238), 1, - sym_string, - STATE(1510), 1, + STATE(714), 1, sym_type, + STATE(879), 1, + sym_string, + STATE(880), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2988), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2986), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(882), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142825,39 +144613,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143645] = 13, - ACTIONS(55), 1, + [141772] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2990), 1, - sym_identifier, - STATE(1783), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1291), 1, sym_string, - STATE(2767), 1, + STATE(2764), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142865,80 +144653,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143698] = 14, - ACTIONS(1113), 1, + [141825] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2996), 1, - sym_identifier, - ACTIONS(2998), 1, - anon_sym_LPAREN, - ACTIONS(3000), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(3008), 1, + ACTIONS(2886), 1, sym_float, - STATE(339), 1, - sym_type, - STATE(524), 1, - sym_union_type, - STATE(546), 1, + ACTIONS(3044), 1, + sym_identifier, + ACTIONS(3046), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym_dotted_name, - STATE(547), 1, + STATE(1291), 1, sym_string, + STATE(1479), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(3004), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(545), 6, + STATE(1285), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [143753] = 13, - ACTIONS(1113), 1, + [141878] = 13, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(2996), 1, + ACTIONS(2978), 1, sym_identifier, - ACTIONS(2998), 1, + ACTIONS(2980), 1, anon_sym_LPAREN, - ACTIONS(3000), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2984), 1, anon_sym_LBRACE, - ACTIONS(3008), 1, + ACTIONS(2990), 1, sym_float, - STATE(522), 1, + STATE(727), 1, sym_type, - STATE(546), 1, - sym_dotted_name, - STATE(547), 1, + STATE(879), 1, sym_string, + STATE(880), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, + ACTIONS(2988), 3, sym_integer, sym_true, sym_false, - ACTIONS(3004), 5, + ACTIONS(2986), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(545), 7, + STATE(882), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142946,39 +144733,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143806] = 13, - ACTIONS(539), 1, + [141931] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2810), 1, + ACTIONS(2836), 1, + sym_identifier, + ACTIONS(2838), 1, + anon_sym_LPAREN, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(3024), 1, - sym_identifier, - ACTIONS(3026), 1, - anon_sym_LPAREN, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + STATE(1913), 1, sym_dotted_name, - STATE(1507), 1, + STATE(1915), 1, + sym_string, + STATE(2694), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -142986,80 +144773,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143859] = 14, - ACTIONS(539), 1, + [141984] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2810), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(3024), 1, + ACTIONS(3044), 1, sym_identifier, - ACTIONS(3026), 1, + ACTIONS(3048), 1, anon_sym_LPAREN, - STATE(1397), 1, - sym_type, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1504), 1, - sym_union_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2816), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(533), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1484), 6, - sym_schema_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [143914] = 13, - ACTIONS(1061), 1, - sym_string_start, - ACTIONS(2976), 1, - sym_identifier, - ACTIONS(2978), 1, - anon_sym_LPAREN, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_LBRACE, - ACTIONS(2988), 1, - sym_float, - STATE(1032), 1, - sym_type, - STATE(1050), 1, + STATE(1291), 1, sym_string, - STATE(1052), 1, - sym_dotted_name, + STATE(1626), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2984), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1058), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143067,39 +144813,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [143967] = 13, - ACTIONS(55), 1, + [142037] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2858), 1, - anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(2990), 1, + ACTIONS(3044), 1, sym_identifier, - STATE(1783), 1, + ACTIONS(3046), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1291), 1, sym_string, - STATE(2690), 1, + STATE(1448), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143107,39 +144853,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144020] = 13, - ACTIONS(503), 1, + [142090] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2850), 1, sym_float, - STATE(1215), 1, + ACTIONS(3054), 1, + sym_identifier, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1818), 1, + sym_type, + STATE(1913), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1915), 1, sym_string, - STATE(2643), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143147,39 +144893,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144073] = 13, + [142143] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(2858), 1, - anon_sym_LPAREN, ACTIONS(2860), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(2862), 1, + anon_sym_LBRACK, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(2990), 1, + ACTIONS(3038), 1, sym_identifier, - STATE(1783), 1, - sym_dotted_name, - STATE(1784), 1, + STATE(1775), 1, sym_string, - STATE(2675), 1, + STATE(1776), 1, + sym_dotted_name, + STATE(2726), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143187,25 +144933,27 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144126] = 13, - ACTIONS(503), 1, + [142196] = 14, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_LPAREN, ACTIONS(2878), 1, anon_sym_LBRACK, ACTIONS(2880), 1, anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - STATE(1215), 1, + ACTIONS(3044), 1, + sym_identifier, + ACTIONS(3046), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2806), 1, + STATE(1438), 1, sym_type, + STATE(1545), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -143219,47 +144967,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [144179] = 13, - ACTIONS(55), 1, + [142251] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(3014), 1, + ACTIONS(3044), 1, sym_identifier, - ACTIONS(3016), 1, + ACTIONS(3046), 1, anon_sym_LPAREN, - STATE(1555), 1, - sym_type, - STATE(1783), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1291), 1, sym_string, + STATE(1429), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143267,39 +145014,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144232] = 13, - ACTIONS(503), 1, + [142304] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2878), 1, + ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(3010), 1, + ACTIONS(3038), 1, sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1215), 1, - sym_dotted_name, - STATE(1238), 1, + STATE(1775), 1, sym_string, - STATE(1454), 1, + STATE(1776), 1, + sym_dotted_name, + STATE(2699), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143307,65 +145054,100 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144285] = 14, - ACTIONS(503), 1, + [142357] = 9, + ACTIONS(2441), 1, + anon_sym_not, + ACTIONS(2457), 1, + anon_sym_is, + ACTIONS(3058), 1, + anon_sym_COLON, + ACTIONS(3060), 1, + anon_sym_EQ, + STATE(2227), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2455), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(3062), 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, + [142402] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2878), 1, + ACTIONS(2836), 1, + sym_identifier, + ACTIONS(2838), 1, + anon_sym_LPAREN, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1215), 1, + STATE(1913), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1915), 1, sym_string, - STATE(1449), 1, + STATE(2721), 1, sym_type, - STATE(1516), 1, - sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 6, + STATE(1911), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [144340] = 13, - ACTIONS(503), 1, + [142455] = 13, + ACTIONS(461), 1, sym_string_start, ACTIONS(2872), 1, sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, ACTIONS(2878), 1, anon_sym_LBRACK, ACTIONS(2880), 1, anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - ACTIONS(3018), 1, - anon_sym_LPAREN, - STATE(1215), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2618), 1, + STATE(2653), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -143380,7 +145162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143388,39 +145170,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144393] = 13, - ACTIONS(1061), 1, + [142508] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2976), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2978), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(2980), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2988), 1, + ACTIONS(2886), 1, sym_float, - STATE(1044), 1, - sym_type, - STATE(1050), 1, - sym_string, - STATE(1052), 1, + STATE(1290), 1, sym_dotted_name, + STATE(1291), 1, + sym_string, + STATE(2661), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2984), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1058), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143428,39 +145210,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144446] = 13, - ACTIONS(55), 1, + [142561] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2860), 1, + ACTIONS(2822), 1, + sym_identifier, + ACTIONS(2824), 1, + anon_sym_LPAREN, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1588), 1, - sym_type, - STATE(1783), 1, + STATE(1622), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1623), 1, sym_string, + STATE(2884), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143468,39 +145250,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144499] = 13, - ACTIONS(906), 1, + [142614] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2962), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2964), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2966), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2968), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2974), 1, + ACTIONS(2820), 1, sym_float, - STATE(1534), 1, - sym_type, - STATE(1665), 1, - sym_string, - STATE(1666), 1, + STATE(1398), 1, sym_dotted_name, + STATE(1399), 1, + sym_string, + STATE(2882), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2972), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2970), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1667), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143508,39 +145290,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144552] = 13, - ACTIONS(55), 1, + [142667] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2858), 1, - anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(2990), 1, + ACTIONS(3040), 1, sym_identifier, - STATE(1783), 1, + ACTIONS(3042), 1, + anon_sym_LPAREN, + STATE(1434), 1, + sym_type, + STATE(1622), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1623), 1, sym_string, - STATE(2693), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143548,39 +145330,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144605] = 13, - ACTIONS(539), 1, + [142720] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2850), 1, sym_float, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + STATE(1913), 1, sym_dotted_name, - STATE(2837), 1, + STATE(1915), 1, + sym_string, + STATE(2702), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143588,24 +145370,24 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144658] = 13, - ACTIONS(503), 1, + [142773] = 13, + ACTIONS(461), 1, sym_string_start, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, ACTIONS(2878), 1, anon_sym_LBRACK, ACTIONS(2880), 1, anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN, - STATE(1215), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(1450), 1, + STATE(2799), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -143620,7 +145402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143628,120 +145410,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144711] = 13, - ACTIONS(431), 1, + [142826] = 13, + ACTIONS(902), 1, sym_string_start, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 1, - anon_sym_LBRACE, - ACTIONS(2804), 1, - sym_float, ACTIONS(3020), 1, sym_identifier, ACTIONS(3022), 1, anon_sym_LPAREN, - STATE(1277), 1, - sym_type, - STATE(1364), 1, - sym_dotted_name, - STATE(1365), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2802), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2800), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - STATE(1363), 7, - sym_schema_type, - sym_union_type, - sym_function_type, - sym_basic_type, - sym_list_type, - sym_dict_type, - sym_literal_type, - [144764] = 14, - ACTIONS(55), 1, - sym_string_start, - ACTIONS(2860), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(3026), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(3032), 1, sym_float, - ACTIONS(3014), 1, - sym_identifier, - ACTIONS(3016), 1, - anon_sym_LPAREN, - STATE(1563), 1, - sym_type, - STATE(1674), 1, - sym_union_type, - STATE(1783), 1, - sym_dotted_name, - STATE(1784), 1, + STATE(1654), 1, sym_string, + STATE(1655), 1, + sym_dotted_name, + STATE(1822), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(3030), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(3028), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 6, + STATE(1656), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [144819] = 13, - ACTIONS(906), 1, + [142879] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2962), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2964), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2966), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2968), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2974), 1, + ACTIONS(2820), 1, sym_float, - STATE(1665), 1, - sym_string, - STATE(1666), 1, + STATE(1398), 1, sym_dotted_name, - STATE(1703), 1, + STATE(1399), 1, + sym_string, + STATE(2881), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2972), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2970), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1667), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143749,39 +145490,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144872] = 13, - ACTIONS(503), 1, + [142932] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2878), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(3010), 1, + ACTIONS(3040), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3042), 1, anon_sym_LPAREN, - STATE(1215), 1, + STATE(1435), 1, + sym_type, + STATE(1622), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1623), 1, sym_string, - STATE(1453), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143789,79 +145530,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [144925] = 13, - ACTIONS(1113), 1, + [142985] = 14, + ACTIONS(902), 1, sym_string_start, - ACTIONS(2996), 1, + ACTIONS(3020), 1, sym_identifier, - ACTIONS(2998), 1, + ACTIONS(3022), 1, anon_sym_LPAREN, - ACTIONS(3000), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(3026), 1, anon_sym_LBRACE, - ACTIONS(3008), 1, + ACTIONS(3032), 1, sym_float, - STATE(324), 1, + STATE(1485), 1, sym_type, - STATE(546), 1, - sym_dotted_name, - STATE(547), 1, + STATE(1654), 1, sym_string, + STATE(1655), 1, + sym_dotted_name, + STATE(1823), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, + ACTIONS(3030), 3, sym_integer, sym_true, sym_false, - ACTIONS(3004), 5, + ACTIONS(3028), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(545), 7, + STATE(1656), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [144978] = 13, - ACTIONS(784), 1, + [143040] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - STATE(1806), 1, - sym_string, - STATE(1920), 1, + STATE(1398), 1, sym_dotted_name, - STATE(2672), 1, + STATE(1399), 1, + sym_string, + STATE(2880), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143869,8 +145611,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145031] = 13, - ACTIONS(503), 1, + [143093] = 13, + ACTIONS(461), 1, sym_string_start, ACTIONS(2872), 1, sym_identifier, @@ -143882,11 +145624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - STATE(1215), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2751), 1, + STATE(2775), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -143901,7 +145643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143909,39 +145651,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145084] = 13, - ACTIONS(503), 1, + [143146] = 13, + ACTIONS(902), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(3020), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(3022), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(3026), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(3032), 1, sym_float, - STATE(1215), 1, - sym_dotted_name, - STATE(1238), 1, - sym_string, - STATE(2753), 1, + STATE(1556), 1, sym_type, + STATE(1654), 1, + sym_string, + STATE(1655), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(3030), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(3028), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1656), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143949,39 +145691,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145137] = 13, - ACTIONS(431), 1, + [143199] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2790), 1, - sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2870), 1, sym_float, - STATE(1364), 1, - sym_dotted_name, - STATE(1365), 1, + ACTIONS(3038), 1, + sym_identifier, + STATE(1775), 1, sym_string, - STATE(2856), 1, + STATE(1776), 1, + sym_dotted_name, + STATE(2686), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -143989,80 +145731,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145190] = 14, - ACTIONS(971), 1, + [143252] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(3032), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(3034), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(3040), 1, + ACTIONS(2870), 1, sym_float, - STATE(340), 1, - sym_type, - STATE(648), 1, + ACTIONS(3038), 1, + sym_identifier, + STATE(1775), 1, sym_string, - STATE(649), 1, + STATE(1776), 1, sym_dotted_name, - STATE(728), 1, - sym_union_type, + STATE(2688), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3038), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(3036), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(652), 6, + STATE(1777), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [145245] = 13, + [143305] = 13, ACTIONS(431), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2806), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2808), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2820), 1, sym_float, - STATE(1364), 1, + STATE(1398), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1399), 1, sym_string, - STATE(2852), 1, + STATE(2878), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144070,39 +145811,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145298] = 13, - ACTIONS(784), 1, + [143358] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2870), 1, sym_float, - STATE(1806), 1, + ACTIONS(3038), 1, + sym_identifier, + STATE(1775), 1, sym_string, - STATE(1920), 1, + STATE(1776), 1, sym_dotted_name, - STATE(2657), 1, + STATE(2727), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144110,39 +145851,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145351] = 13, - ACTIONS(971), 1, + [143411] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(3028), 1, + ACTIONS(2836), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(2838), 1, anon_sym_LPAREN, - ACTIONS(3032), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(3034), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(3040), 1, + ACTIONS(2850), 1, sym_float, - STATE(349), 1, - sym_type, - STATE(648), 1, - sym_string, - STATE(649), 1, + STATE(1913), 1, sym_dotted_name, + STATE(1915), 1, + sym_string, + STATE(2683), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3038), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(3036), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(652), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144150,39 +145891,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145404] = 13, - ACTIONS(503), 1, + [143464] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2820), 1, sym_float, - STATE(1215), 1, + ACTIONS(3050), 1, + sym_identifier, + ACTIONS(3052), 1, + anon_sym_LPAREN, + STATE(1306), 1, + sym_type, + STATE(1398), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1399), 1, sym_string, - STATE(2654), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144190,155 +145931,120 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145457] = 13, - ACTIONS(784), 1, + [143517] = 14, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2824), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2850), 1, sym_float, - STATE(1806), 1, - sym_string, - STATE(1920), 1, - sym_dotted_name, - STATE(2679), 1, + ACTIONS(3054), 1, + sym_identifier, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1640), 1, sym_type, + STATE(1913), 1, + sym_dotted_name, + STATE(1915), 1, + sym_string, + STATE(1959), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1911), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [145510] = 8, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(1294), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1663), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 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, - [145553] = 14, - ACTIONS(431), 1, + [143572] = 13, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(2794), 1, + ACTIONS(2992), 1, + sym_identifier, + ACTIONS(2994), 1, + anon_sym_LPAREN, + ACTIONS(2996), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2998), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(3004), 1, sym_float, - ACTIONS(3020), 1, - sym_identifier, - ACTIONS(3022), 1, - anon_sym_LPAREN, - STATE(1291), 1, + STATE(740), 1, sym_type, - STATE(1326), 1, - sym_union_type, - STATE(1364), 1, - sym_dotted_name, - STATE(1365), 1, + STATE(883), 1, sym_string, + STATE(896), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(3002), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(3000), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 6, + STATE(878), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [145608] = 13, - ACTIONS(431), 1, + [143625] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2794), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(3020), 1, + ACTIONS(3040), 1, sym_identifier, - ACTIONS(3022), 1, + ACTIONS(3042), 1, anon_sym_LPAREN, - STATE(1292), 1, + STATE(1441), 1, sym_type, - STATE(1364), 1, + STATE(1622), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1623), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144346,79 +146052,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145661] = 13, - ACTIONS(503), 1, + [143678] = 14, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2878), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(3010), 1, + ACTIONS(3050), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3052), 1, anon_sym_LPAREN, - STATE(1215), 1, + STATE(1297), 1, + sym_type, + STATE(1367), 1, + sym_union_type, + STATE(1398), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1399), 1, sym_string, - STATE(1461), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1397), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [145714] = 13, - ACTIONS(906), 1, + [143733] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2962), 1, - sym_identifier, - ACTIONS(2964), 1, - anon_sym_LPAREN, - ACTIONS(2966), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2968), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2974), 1, + ACTIONS(2820), 1, sym_float, - STATE(1479), 1, + ACTIONS(3050), 1, + sym_identifier, + ACTIONS(3052), 1, + anon_sym_LPAREN, + STATE(1298), 1, sym_type, - STATE(1665), 1, - sym_string, - STATE(1666), 1, + STATE(1398), 1, sym_dotted_name, + STATE(1399), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2972), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2970), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1667), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144426,39 +146133,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145767] = 13, - ACTIONS(503), 1, + [143786] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2850), 1, sym_float, - STATE(1215), 1, + ACTIONS(3054), 1, + sym_identifier, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1913), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1915), 1, sym_string, - STATE(2755), 1, + STATE(1960), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144466,39 +146173,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145820] = 13, + [143839] = 13, ACTIONS(55), 1, sym_string_start, - ACTIONS(2858), 1, - anon_sym_LPAREN, - ACTIONS(2860), 1, - anon_sym_LBRACK, ACTIONS(2862), 1, + anon_sym_LBRACK, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(2990), 1, + ACTIONS(3034), 1, sym_identifier, - STATE(1783), 1, - sym_dotted_name, - STATE(1784), 1, - sym_string, - STATE(2680), 1, + ACTIONS(3036), 1, + anon_sym_LPAREN, + STATE(1534), 1, sym_type, + STATE(1775), 1, + sym_string, + STATE(1776), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144506,80 +146213,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145873] = 14, - ACTIONS(1061), 1, + [143892] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2976), 1, - sym_identifier, - ACTIONS(2978), 1, - anon_sym_LPAREN, - ACTIONS(2980), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2988), 1, + ACTIONS(2820), 1, sym_float, - STATE(1017), 1, + ACTIONS(3050), 1, + sym_identifier, + ACTIONS(3052), 1, + anon_sym_LPAREN, + STATE(1311), 1, sym_type, - STATE(1050), 1, - sym_string, - STATE(1052), 1, + STATE(1398), 1, sym_dotted_name, - STATE(1064), 1, - sym_union_type, + STATE(1399), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2984), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1058), 6, + STATE(1397), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [145928] = 13, - ACTIONS(1061), 1, + [143945] = 13, + ACTIONS(902), 1, sym_string_start, - ACTIONS(2976), 1, + ACTIONS(3020), 1, sym_identifier, - ACTIONS(2978), 1, + ACTIONS(3022), 1, anon_sym_LPAREN, - ACTIONS(2980), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3026), 1, anon_sym_LBRACE, - ACTIONS(2988), 1, + ACTIONS(3032), 1, sym_float, - STATE(1050), 1, + STATE(1594), 1, + sym_type, + STATE(1654), 1, sym_string, - STATE(1052), 1, + STATE(1655), 1, sym_dotted_name, - STATE(1065), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2986), 3, + ACTIONS(3030), 3, sym_integer, sym_true, sym_false, - ACTIONS(2984), 5, + ACTIONS(3028), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1058), 7, + STATE(1656), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144587,114 +146293,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [145981] = 13, - ACTIONS(784), 1, + [143998] = 14, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(2824), 1, + ACTIONS(2992), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(2994), 1, anon_sym_LPAREN, - ACTIONS(2830), 1, + ACTIONS(2996), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2998), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(3004), 1, sym_float, - STATE(1806), 1, + STATE(631), 1, + sym_type, + STATE(856), 1, + sym_union_type, + STATE(883), 1, sym_string, - STATE(1920), 1, + STATE(896), 1, sym_dotted_name, - STATE(2692), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(3002), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(3000), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(878), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [146034] = 8, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(1294), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1663), 2, - anon_sym_EQ, - anon_sym_PLUS, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(1665), 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, - [146077] = 13, - ACTIONS(971), 1, + [144053] = 13, + ACTIONS(902), 1, sym_string_start, - ACTIONS(3028), 1, + ACTIONS(3020), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3022), 1, anon_sym_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - ACTIONS(3034), 1, + ACTIONS(3026), 1, anon_sym_LBRACE, - ACTIONS(3040), 1, + ACTIONS(3032), 1, sym_float, - STATE(648), 1, + STATE(1569), 1, + sym_type, + STATE(1654), 1, sym_string, - STATE(649), 1, + STATE(1655), 1, sym_dotted_name, - STATE(742), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3038), 3, + ACTIONS(3030), 3, sym_integer, sym_true, sym_false, - ACTIONS(3036), 5, + ACTIONS(3028), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(652), 7, + STATE(1656), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144702,79 +146374,80 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146130] = 13, - ACTIONS(55), 1, + [144106] = 14, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(2978), 1, + sym_identifier, + ACTIONS(2980), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2984), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, - sym_float, ACTIONS(2990), 1, - sym_identifier, - STATE(1783), 1, - sym_dotted_name, - STATE(1784), 1, - sym_string, - STATE(2683), 1, + sym_float, + STATE(790), 1, sym_type, + STATE(879), 1, + sym_string, + STATE(880), 1, + sym_dotted_name, + STATE(888), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2988), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2986), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(882), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [146183] = 13, - ACTIONS(503), 1, + [144161] = 13, + ACTIONS(1038), 1, sym_string_start, - ACTIONS(2872), 1, + ACTIONS(2978), 1, sym_identifier, - ACTIONS(2876), 1, + ACTIONS(2980), 1, anon_sym_LPAREN, - ACTIONS(2878), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2984), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2990), 1, sym_float, - STATE(1215), 1, - sym_dotted_name, - STATE(1238), 1, + STATE(879), 1, sym_string, - STATE(2757), 1, + STATE(880), 1, + sym_dotted_name, + STATE(895), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2988), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2986), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(882), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144782,39 +146455,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146236] = 13, - ACTIONS(431), 1, + [144214] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2790), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2792), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2834), 1, sym_float, - STATE(1364), 1, + STATE(1622), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1623), 1, sym_string, - STATE(2854), 1, + STATE(2728), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144822,39 +146495,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146289] = 13, - ACTIONS(503), 1, + [144267] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2880), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2886), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(3018), 1, + ACTIONS(3034), 1, + sym_identifier, + ACTIONS(3036), 1, anon_sym_LPAREN, - STATE(1215), 1, - sym_dotted_name, - STATE(1238), 1, - sym_string, - STATE(2587), 1, + STATE(1563), 1, sym_type, + STATE(1775), 1, + sym_string, + STATE(1776), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2884), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2882), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144862,39 +146535,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146342] = 13, - ACTIONS(55), 1, + [144320] = 13, + ACTIONS(1161), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(2992), 1, + sym_identifier, + ACTIONS(2994), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2996), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2998), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(3004), 1, sym_float, - ACTIONS(2990), 1, - sym_identifier, - STATE(1783), 1, - sym_dotted_name, - STATE(1784), 1, - sym_string, - STATE(2674), 1, + STATE(874), 1, sym_type, + STATE(883), 1, + sym_string, + STATE(896), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(3002), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(3000), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(878), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144902,39 +146575,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146395] = 13, - ACTIONS(431), 1, + [144373] = 13, + ACTIONS(539), 1, sym_string_start, - ACTIONS(2794), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2834), 1, sym_float, - ACTIONS(3020), 1, + ACTIONS(3040), 1, sym_identifier, - ACTIONS(3022), 1, + ACTIONS(3042), 1, anon_sym_LPAREN, - STATE(1304), 1, + STATE(1450), 1, sym_type, - STATE(1364), 1, + STATE(1622), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1623), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(533), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144942,29 +146615,64 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146448] = 13, + [144426] = 8, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(1301), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1619), 2, + anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(1617), 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, + [144469] = 13, ACTIONS(539), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(2824), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2826), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2830), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2834), 1, sym_float, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + STATE(1622), 1, sym_dotted_name, - STATE(2822), 1, + STATE(1623), 1, + sym_string, + STATE(2877), 1, sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2832), 3, sym_integer, sym_true, sym_false, @@ -144974,7 +146682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1621), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -144982,39 +146690,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146501] = 13, - ACTIONS(539), 1, + [144522] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2810), 1, + ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(3024), 1, + ACTIONS(3038), 1, sym_identifier, - ACTIONS(3026), 1, - anon_sym_LPAREN, - STATE(1424), 1, - sym_type, - STATE(1481), 1, + STATE(1775), 1, sym_string, - STATE(1482), 1, + STATE(1776), 1, sym_dotted_name, + STATE(2712), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145022,39 +146730,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146554] = 13, - ACTIONS(906), 1, + [144575] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2962), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2964), 1, - anon_sym_LPAREN, - ACTIONS(2966), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2968), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2974), 1, + ACTIONS(2886), 1, sym_float, - STATE(1503), 1, - sym_type, - STATE(1665), 1, - sym_string, - STATE(1666), 1, + ACTIONS(3048), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym_dotted_name, + STATE(1291), 1, + sym_string, + STATE(2608), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2972), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(2970), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1667), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145062,39 +146770,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146607] = 13, - ACTIONS(431), 1, + [144628] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2794), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(3020), 1, + ACTIONS(3034), 1, sym_identifier, - ACTIONS(3022), 1, + ACTIONS(3036), 1, anon_sym_LPAREN, - STATE(1261), 1, + STATE(1663), 1, sym_type, - STATE(1364), 1, - sym_dotted_name, - STATE(1365), 1, + STATE(1775), 1, sym_string, + STATE(1776), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145102,39 +146810,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146660] = 13, - ACTIONS(539), 1, + [144681] = 13, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(2806), 1, + ACTIONS(3006), 1, sym_identifier, - ACTIONS(2808), 1, + ACTIONS(3008), 1, anon_sym_LPAREN, - ACTIONS(2810), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(3018), 1, sym_float, - STATE(1481), 1, + STATE(1046), 1, + sym_type, + STATE(1057), 1, sym_string, - STATE(1482), 1, + STATE(1067), 1, sym_dotted_name, - STATE(2818), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(3016), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(3014), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1069), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145142,39 +146850,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146713] = 13, - ACTIONS(431), 1, + [144734] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2790), 1, - sym_identifier, - ACTIONS(2792), 1, - anon_sym_LPAREN, - ACTIONS(2794), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2804), 1, + ACTIONS(2850), 1, sym_float, - STATE(1364), 1, + ACTIONS(3054), 1, + sym_identifier, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1827), 1, + sym_type, + STATE(1913), 1, sym_dotted_name, - STATE(1365), 1, + STATE(1915), 1, sym_string, - STATE(2855), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2802), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2800), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1363), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145182,24 +146890,24 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146766] = 13, - ACTIONS(503), 1, + [144787] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2872), 1, - sym_identifier, - ACTIONS(2876), 1, - anon_sym_LPAREN, ACTIONS(2878), 1, anon_sym_LBRACK, ACTIONS(2880), 1, anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - STATE(1215), 1, + ACTIONS(3044), 1, + sym_identifier, + ACTIONS(3046), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2799), 1, + STATE(1471), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -145214,7 +146922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145222,39 +146930,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146819] = 13, - ACTIONS(539), 1, + [144840] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2810), 1, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(3024), 1, - sym_identifier, - ACTIONS(3026), 1, - anon_sym_LPAREN, - STATE(1410), 1, - sym_type, - STATE(1481), 1, - sym_string, - STATE(1482), 1, + STATE(1290), 1, sym_dotted_name, + STATE(1291), 1, + sym_string, + STATE(2793), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145262,120 +146970,120 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [146872] = 13, - ACTIONS(55), 1, + [144893] = 14, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(2858), 1, + ACTIONS(3006), 1, + sym_identifier, + ACTIONS(3008), 1, anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(3018), 1, sym_float, - ACTIONS(2990), 1, - sym_identifier, - STATE(1783), 1, - sym_dotted_name, - STATE(1784), 1, - sym_string, - STATE(2677), 1, + STATE(1039), 1, sym_type, + STATE(1057), 1, + sym_string, + STATE(1067), 1, + sym_dotted_name, + STATE(1070), 1, + sym_union_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(3016), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(3014), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1069), 6, sym_schema_type, - sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [146925] = 14, - ACTIONS(784), 1, + [144948] = 13, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(2830), 1, + ACTIONS(3006), 1, + sym_identifier, + ACTIONS(3008), 1, + anon_sym_LPAREN, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(3018), 1, sym_float, - ACTIONS(2992), 1, - sym_identifier, - ACTIONS(2994), 1, - anon_sym_LPAREN, - STATE(1705), 1, + STATE(1056), 1, sym_type, - STATE(1805), 1, - sym_union_type, - STATE(1806), 1, + STATE(1057), 1, sym_string, - STATE(1920), 1, + STATE(1067), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(3016), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(3014), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 6, + STATE(1069), 7, sym_schema_type, + sym_union_type, sym_function_type, sym_basic_type, sym_list_type, sym_dict_type, sym_literal_type, - [146980] = 13, - ACTIONS(539), 1, + [145001] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(2810), 1, + ACTIONS(2860), 1, + anon_sym_LPAREN, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2870), 1, sym_float, - ACTIONS(3024), 1, + ACTIONS(3038), 1, sym_identifier, - ACTIONS(3026), 1, - anon_sym_LPAREN, - STATE(1418), 1, - sym_type, - STATE(1481), 1, + STATE(1775), 1, sym_string, - STATE(1482), 1, + STATE(1776), 1, sym_dotted_name, + STATE(2708), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145383,39 +147091,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147033] = 13, - ACTIONS(784), 1, + [145054] = 13, + ACTIONS(431), 1, sym_string_start, - ACTIONS(2830), 1, + ACTIONS(2810), 1, anon_sym_LBRACK, - ACTIONS(2832), 1, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2838), 1, + ACTIONS(2820), 1, sym_float, - ACTIONS(2992), 1, + ACTIONS(3050), 1, sym_identifier, - ACTIONS(2994), 1, + ACTIONS(3052), 1, anon_sym_LPAREN, - STATE(1806), 1, - sym_string, - STATE(1859), 1, + STATE(1316), 1, sym_type, - STATE(1920), 1, + STATE(1398), 1, sym_dotted_name, + STATE(1399), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2836), 3, + ACTIONS(2818), 3, sym_integer, sym_true, sym_false, - ACTIONS(2834), 5, + ACTIONS(2816), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1895), 7, + STATE(1397), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145423,39 +147131,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147086] = 13, - ACTIONS(971), 1, + [145107] = 13, + ACTIONS(1094), 1, sym_string_start, - ACTIONS(3028), 1, + ACTIONS(3006), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3008), 1, anon_sym_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(3034), 1, + ACTIONS(3012), 1, anon_sym_LBRACE, - ACTIONS(3040), 1, + ACTIONS(3018), 1, sym_float, - STATE(356), 1, + STATE(1019), 1, sym_type, - STATE(648), 1, + STATE(1057), 1, sym_string, - STATE(649), 1, + STATE(1067), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3038), 3, + ACTIONS(3016), 3, sym_integer, sym_true, sym_false, - ACTIONS(3036), 5, + ACTIONS(3014), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(652), 7, + STATE(1069), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145463,75 +147171,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147139] = 9, - ACTIONS(2467), 1, - anon_sym_not, - ACTIONS(2475), 1, - anon_sym_is, - ACTIONS(3042), 1, - anon_sym_COLON, - ACTIONS(3044), 1, - anon_sym_EQ, - STATE(2203), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2473), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2465), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - ACTIONS(3046), 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, - [147184] = 13, - ACTIONS(971), 1, + [145160] = 13, + ACTIONS(55), 1, sym_string_start, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, + ACTIONS(2860), 1, anon_sym_LPAREN, - ACTIONS(3032), 1, + ACTIONS(2862), 1, anon_sym_LBRACK, - ACTIONS(3034), 1, + ACTIONS(2864), 1, anon_sym_LBRACE, - ACTIONS(3040), 1, + ACTIONS(2870), 1, sym_float, - STATE(343), 1, - sym_type, - STATE(648), 1, + ACTIONS(3038), 1, + sym_identifier, + STATE(1775), 1, sym_string, - STATE(649), 1, + STATE(1776), 1, sym_dotted_name, + STATE(2700), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3038), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(3036), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(652), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145539,8 +147211,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147237] = 13, - ACTIONS(503), 1, + [145213] = 13, + ACTIONS(461), 1, sym_string_start, ACTIONS(2872), 1, sym_identifier, @@ -145552,11 +147224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - STATE(1215), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(2652), 1, + STATE(2777), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -145571,7 +147243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145579,39 +147251,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147290] = 13, - ACTIONS(1113), 1, + [145266] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2996), 1, + ACTIONS(2842), 1, + anon_sym_LBRACK, + ACTIONS(2844), 1, + anon_sym_LBRACE, + ACTIONS(2850), 1, + sym_float, + ACTIONS(3054), 1, sym_identifier, - ACTIONS(2998), 1, + ACTIONS(3056), 1, anon_sym_LPAREN, - ACTIONS(3000), 1, + STATE(1803), 1, + sym_type, + STATE(1913), 1, + sym_dotted_name, + STATE(1915), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2848), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2846), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1911), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [145319] = 13, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(3008), 1, + ACTIONS(2886), 1, sym_float, - STATE(314), 1, - sym_type, - STATE(546), 1, + ACTIONS(3048), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym_dotted_name, - STATE(547), 1, + STATE(1291), 1, sym_string, + STATE(2641), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(3004), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(545), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145619,39 +147331,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147343] = 13, - ACTIONS(971), 1, + [145372] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3028), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(2876), 1, anon_sym_LPAREN, - ACTIONS(3032), 1, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(3034), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(3040), 1, + ACTIONS(2886), 1, sym_float, - STATE(351), 1, - sym_type, - STATE(648), 1, - sym_string, - STATE(649), 1, + STATE(1290), 1, sym_dotted_name, + STATE(1291), 1, + sym_string, + STATE(2781), 1, + sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3038), 3, + ACTIONS(2884), 3, sym_integer, sym_true, sym_false, - ACTIONS(3036), 5, + ACTIONS(2882), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(652), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145659,39 +147371,39 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147396] = 13, - ACTIONS(55), 1, + [145425] = 13, + ACTIONS(790), 1, sym_string_start, - ACTIONS(2858), 1, - anon_sym_LPAREN, - ACTIONS(2860), 1, + ACTIONS(2842), 1, anon_sym_LBRACK, - ACTIONS(2862), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2868), 1, + ACTIONS(2850), 1, sym_float, - ACTIONS(2990), 1, + ACTIONS(3054), 1, sym_identifier, - STATE(1783), 1, + ACTIONS(3056), 1, + anon_sym_LPAREN, + STATE(1805), 1, + sym_type, + STATE(1913), 1, sym_dotted_name, - STATE(1784), 1, + STATE(1915), 1, sym_string, - STATE(2655), 1, - sym_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2866), 3, + ACTIONS(2848), 3, sym_integer, sym_true, sym_false, - ACTIONS(2864), 5, + ACTIONS(2846), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1782), 7, + STATE(1911), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145699,8 +147411,8 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147449] = 13, - ACTIONS(503), 1, + [145478] = 13, + ACTIONS(461), 1, sym_string_start, ACTIONS(2878), 1, anon_sym_LBRACK, @@ -145708,15 +147420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2886), 1, sym_float, - ACTIONS(3010), 1, + ACTIONS(3044), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3046), 1, anon_sym_LPAREN, - STATE(1215), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1238), 1, + STATE(1291), 1, sym_string, - STATE(1460), 1, + STATE(1433), 1, sym_type, ACTIONS(3), 2, sym_comment, @@ -145731,7 +147443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1243), 7, + STATE(1285), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145739,39 +147451,79 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147502] = 13, - ACTIONS(539), 1, + [145531] = 13, + ACTIONS(461), 1, sym_string_start, - ACTIONS(2810), 1, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + anon_sym_LPAREN, + ACTIONS(2878), 1, anon_sym_LBRACK, - ACTIONS(2814), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, + ACTIONS(2886), 1, sym_float, - ACTIONS(3024), 1, + STATE(1290), 1, + sym_dotted_name, + STATE(1291), 1, + sym_string, + STATE(2768), 1, + sym_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2884), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2882), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + STATE(1285), 7, + sym_schema_type, + sym_union_type, + sym_function_type, + sym_basic_type, + sym_list_type, + sym_dict_type, + sym_literal_type, + [145584] = 13, + ACTIONS(55), 1, + sym_string_start, + ACTIONS(2862), 1, + anon_sym_LBRACK, + ACTIONS(2864), 1, + anon_sym_LBRACE, + ACTIONS(2870), 1, + sym_float, + ACTIONS(3034), 1, sym_identifier, - ACTIONS(3026), 1, + ACTIONS(3036), 1, anon_sym_LPAREN, - STATE(1423), 1, + STATE(1552), 1, sym_type, - STATE(1481), 1, + STATE(1775), 1, sym_string, - STATE(1482), 1, + STATE(1776), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2816), 3, + ACTIONS(2868), 3, sym_integer, sym_true, sym_false, - ACTIONS(533), 5, + ACTIONS(2866), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - STATE(1484), 7, + STATE(1777), 7, sym_schema_type, sym_union_type, sym_function_type, @@ -145779,29 +147531,29 @@ static const uint16_t ts_small_parse_table[] = { sym_list_type, sym_dict_type, sym_literal_type, - [147555] = 8, - ACTIONS(2183), 1, + [145637] = 8, + ACTIONS(2201), 1, anon_sym_not, - ACTIONS(2195), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1463), 1, + STATE(1453), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 2, + ACTIONS(1619), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2193), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2181), 5, + ACTIONS(2199), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, + ACTIONS(1617), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -145812,29 +147564,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [147596] = 8, - ACTIONS(2183), 1, + [145678] = 8, + ACTIONS(2201), 1, anon_sym_not, - ACTIONS(2195), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1463), 1, + STATE(1453), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 2, + ACTIONS(1619), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2193), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2181), 5, + ACTIONS(2199), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, + ACTIONS(1617), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -145845,29 +147597,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [147637] = 8, - ACTIONS(2183), 1, + [145719] = 8, + ACTIONS(2201), 1, anon_sym_not, - ACTIONS(2195), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1463), 1, + STATE(1453), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 2, + ACTIONS(1619), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2193), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2181), 5, + ACTIONS(2199), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, + ACTIONS(1617), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -145878,29 +147630,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [147678] = 8, - ACTIONS(2183), 1, + [145760] = 8, + ACTIONS(2201), 1, anon_sym_not, - ACTIONS(2195), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1463), 1, + STATE(1453), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 2, + ACTIONS(1619), 2, anon_sym_EQ, anon_sym_PLUS, - ACTIONS(2193), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2181), 5, + ACTIONS(2199), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, + ACTIONS(1617), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -145911,26 +147663,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [147719] = 7, - ACTIONS(2244), 1, + [145801] = 7, + ACTIONS(2264), 1, anon_sym_not, - ACTIONS(2260), 1, + ACTIONS(2272), 1, anon_sym_is, - STATE(1509), 1, + STATE(1497), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + ACTIONS(2270), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2236), 5, + ACTIONS(2262), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 11, + ACTIONS(1617), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -145942,26 +147694,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147757] = 7, - ACTIONS(2244), 1, + [145839] = 7, + ACTIONS(2264), 1, anon_sym_not, - ACTIONS(2260), 1, + ACTIONS(2272), 1, anon_sym_is, - STATE(1509), 1, + STATE(1497), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + ACTIONS(2270), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2236), 5, + ACTIONS(2262), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 11, + ACTIONS(1617), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -145973,26 +147725,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147795] = 7, - ACTIONS(2244), 1, + [145877] = 7, + ACTIONS(2264), 1, anon_sym_not, - ACTIONS(2260), 1, + ACTIONS(2272), 1, anon_sym_is, - STATE(1509), 1, + STATE(1497), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + ACTIONS(2270), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2236), 5, + ACTIONS(2262), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 11, + ACTIONS(1617), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146004,26 +147756,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147833] = 7, - ACTIONS(2244), 1, + [145915] = 7, + ACTIONS(2264), 1, anon_sym_not, - ACTIONS(2260), 1, + ACTIONS(2272), 1, anon_sym_is, - STATE(1509), 1, + STATE(1497), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + ACTIONS(2270), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2236), 5, + ACTIONS(2262), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 11, + ACTIONS(1617), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146035,26 +147787,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147871] = 7, - ACTIONS(2467), 1, + [145953] = 7, + ACTIONS(2441), 1, anon_sym_not, - ACTIONS(2475), 1, + ACTIONS(2457), 1, anon_sym_is, - STATE(1698), 1, + STATE(1664), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, + ACTIONS(2455), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 5, + ACTIONS(2437), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, + ACTIONS(1617), 10, sym__newline, anon_sym_DOT, anon_sym_as, @@ -146065,26 +147817,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147908] = 7, - ACTIONS(2436), 1, + [145990] = 7, + ACTIONS(2478), 1, anon_sym_not, - ACTIONS(2440), 1, + ACTIONS(2482), 1, anon_sym_is, - STATE(1722), 1, + STATE(1802), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2438), 2, + ACTIONS(2480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 5, + ACTIONS(2476), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, + ACTIONS(1617), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146095,199 +147847,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [147945] = 7, - ACTIONS(1665), 1, - anon_sym_LF, - ACTIONS(2454), 1, + [146027] = 7, + ACTIONS(2478), 1, anon_sym_not, - ACTIONS(2456), 1, + ACTIONS(2482), 1, anon_sym_is, - STATE(1704), 1, + STATE(1802), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 7, - anon_sym_in, + ACTIONS(2480), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(2476), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(1663), 9, + ACTIONS(1617), 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, - [147982] = 7, - ACTIONS(2467), 1, + [146064] = 7, + ACTIONS(1617), 1, + anon_sym_LF, + ACTIONS(2398), 1, anon_sym_not, - ACTIONS(2475), 1, + ACTIONS(2410), 1, anon_sym_is, - STATE(1698), 1, + STATE(1817), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2465), 5, + ACTIONS(2390), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, - sym__newline, + anon_sym_GT, + ACTIONS(1619), 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, - [148019] = 7, - ACTIONS(1665), 1, - anon_sym_LF, - ACTIONS(2454), 1, + [146101] = 7, + ACTIONS(2478), 1, anon_sym_not, - ACTIONS(2456), 1, + ACTIONS(2482), 1, anon_sym_is, - STATE(1704), 1, + STATE(1802), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 7, - anon_sym_in, + ACTIONS(2480), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(2476), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(1663), 9, + ACTIONS(1617), 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, - [148056] = 7, - ACTIONS(1665), 1, - anon_sym_LF, - ACTIONS(2454), 1, + [146138] = 7, + ACTIONS(2441), 1, anon_sym_not, - ACTIONS(2456), 1, + ACTIONS(2457), 1, anon_sym_is, - STATE(1704), 1, + STATE(1664), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 7, - anon_sym_in, + ACTIONS(2455), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_GT, - ACTIONS(1663), 9, + ACTIONS(1617), 10, + sym__newline, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148093] = 7, - ACTIONS(2467), 1, + [146175] = 7, + ACTIONS(2478), 1, anon_sym_not, - ACTIONS(2475), 1, + ACTIONS(2482), 1, anon_sym_is, - STATE(1698), 1, + STATE(1802), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, + ACTIONS(2480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 5, + ACTIONS(2476), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, - sym__newline, + ACTIONS(1617), 10, 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, anon_sym_PLUS, - [148130] = 7, - ACTIONS(2467), 1, + [146212] = 7, + ACTIONS(1617), 1, + anon_sym_LF, + ACTIONS(2398), 1, anon_sym_not, - ACTIONS(2475), 1, + ACTIONS(2410), 1, anon_sym_is, - STATE(1698), 1, + STATE(1817), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2465), 5, + ACTIONS(2390), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, - sym__newline, + anon_sym_GT, + ACTIONS(1619), 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, - [148167] = 7, - ACTIONS(1665), 1, + [146249] = 7, + ACTIONS(1617), 1, anon_sym_LF, - ACTIONS(2454), 1, + ACTIONS(2398), 1, anon_sym_not, - ACTIONS(2456), 1, + ACTIONS(2410), 1, anon_sym_is, - STATE(1704), 1, + STATE(1817), 1, aux_sym_comparison_operator_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 7, + ACTIONS(2390), 7, anon_sym_in, anon_sym_LT, anon_sym_LT_EQ, @@ -146295,7 +148047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_GT, - ACTIONS(1663), 9, + ACTIONS(1619), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146305,116 +148057,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148204] = 7, - ACTIONS(2436), 1, + [146286] = 7, + ACTIONS(1617), 1, + anon_sym_LF, + ACTIONS(2398), 1, anon_sym_not, - ACTIONS(2440), 1, + ACTIONS(2410), 1, anon_sym_is, - STATE(1722), 1, + STATE(1817), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(2438), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2434), 5, + ACTIONS(2390), 7, anon_sym_in, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, + anon_sym_GT, + ACTIONS(1619), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148241] = 7, - ACTIONS(2436), 1, + [146323] = 7, + ACTIONS(2441), 1, anon_sym_not, - ACTIONS(2440), 1, + ACTIONS(2457), 1, anon_sym_is, - STATE(1722), 1, + STATE(1664), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2438), 2, + ACTIONS(2455), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 5, + ACTIONS(2437), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, + ACTIONS(1617), 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, - [148278] = 7, - ACTIONS(2436), 1, + [146360] = 7, + ACTIONS(2441), 1, anon_sym_not, - ACTIONS(2440), 1, + ACTIONS(2457), 1, anon_sym_is, - STATE(1722), 1, + STATE(1664), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2438), 2, + ACTIONS(2455), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 5, + ACTIONS(2437), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 10, + ACTIONS(1617), 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, - [148315] = 7, - ACTIONS(2540), 1, + [146397] = 7, + ACTIONS(2589), 1, anon_sym_not, - ACTIONS(2544), 1, + ACTIONS(2593), 1, anon_sym_is, - STATE(1852), 1, + STATE(1963), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2542), 2, + ACTIONS(2591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 5, + ACTIONS(2587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 9, + ACTIONS(1617), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146424,26 +148176,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148351] = 7, - ACTIONS(2540), 1, + [146433] = 7, + ACTIONS(2589), 1, anon_sym_not, - ACTIONS(2544), 1, + ACTIONS(2593), 1, anon_sym_is, - STATE(1852), 1, + STATE(1963), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2542), 2, + ACTIONS(2591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 5, + ACTIONS(2587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 9, + ACTIONS(1617), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146453,26 +148205,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148387] = 7, - ACTIONS(2540), 1, + [146469] = 7, + ACTIONS(2589), 1, anon_sym_not, - ACTIONS(2544), 1, + ACTIONS(2593), 1, anon_sym_is, - STATE(1852), 1, + STATE(1963), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2542), 2, + ACTIONS(2591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 5, + ACTIONS(2587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 9, + ACTIONS(1617), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146482,26 +148234,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148423] = 7, - ACTIONS(2540), 1, + [146505] = 7, + ACTIONS(2589), 1, anon_sym_not, - ACTIONS(2544), 1, + ACTIONS(2593), 1, anon_sym_is, - STATE(1852), 1, + STATE(1963), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2542), 2, + ACTIONS(2591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 5, + ACTIONS(2587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 9, + ACTIONS(1617), 9, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146511,26 +148263,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148459] = 7, - ACTIONS(2038), 1, + [146541] = 7, + ACTIONS(2066), 1, anon_sym_not, - ACTIONS(2054), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2020), 1, + STATE(2051), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 5, + ACTIONS(1455), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 7, + ACTIONS(1617), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146538,26 +148290,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148493] = 7, - ACTIONS(2038), 1, + [146575] = 7, + ACTIONS(2066), 1, anon_sym_not, - ACTIONS(2054), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2020), 1, + STATE(2051), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 5, + ACTIONS(1455), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 7, + ACTIONS(1617), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146565,26 +148317,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148527] = 7, - ACTIONS(2038), 1, + [146609] = 7, + ACTIONS(2066), 1, anon_sym_not, - ACTIONS(2054), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2020), 1, + STATE(2051), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 5, + ACTIONS(1455), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 7, + ACTIONS(1617), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146592,26 +148344,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148561] = 7, - ACTIONS(2038), 1, + [146643] = 7, + ACTIONS(2066), 1, anon_sym_not, - ACTIONS(2054), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(2020), 1, + STATE(2051), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 5, + ACTIONS(1455), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(1665), 7, + ACTIONS(1617), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -146619,224 +148371,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS, - [148595] = 14, + [146677] = 4, + ACTIONS(3064), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 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, + [146704] = 13, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(547), 1, + ACTIONS(417), 1, + anon_sym_STAR_STAR, + ACTIONS(439), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3050), 1, + ACTIONS(3068), 1, anon_sym_RBRACE, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, - sym_integer, - ACTIONS(3056), 1, - sym_float, - STATE(2686), 1, - sym_config_entry, - STATE(2866), 1, + ACTIONS(3070), 1, + anon_sym_LF, + STATE(2748), 1, sym_test, - STATE(3128), 1, - sym_config_entries, - ACTIONS(3), 2, + STATE(2802), 1, + sym_config_entry, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, + ACTIONS(3072), 2, + sym_integer, + sym_float, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [148642] = 14, + [146749] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, - sym_float, - ACTIONS(3058), 1, + ACTIONS(3074), 1, anon_sym_RBRACE, - STATE(2686), 1, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, + sym_float, + STATE(2697), 1, sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, - STATE(3124), 1, + STATE(3092), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [148689] = 4, - ACTIONS(3060), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 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, - [148716] = 14, + [146796] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, sym_float, - ACTIONS(3062), 1, + ACTIONS(3080), 1, anon_sym_RBRACE, - STATE(2686), 1, + STATE(2697), 1, sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, - STATE(3136), 1, + STATE(3065), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [148763] = 7, - ACTIONS(3060), 1, - anon_sym_PLUS, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1485), 9, - 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_PLUS_EQ, - [148796] = 14, + [146843] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, sym_float, - ACTIONS(3068), 1, + ACTIONS(3082), 1, anon_sym_RBRACE, - STATE(2686), 1, + STATE(2697), 1, sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, - STATE(3202), 1, + STATE(3130), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [148843] = 4, - ACTIONS(3060), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 13, - anon_sym_DOT, - anon_sym_as, + [146890] = 13, + ACTIONS(403), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, + ACTIONS(417), 1, + anon_sym_STAR_STAR, + ACTIONS(439), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(3084), 1, anon_sym_RBRACE, - anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS_EQ, - [148870] = 5, - STATE(1494), 1, + ACTIONS(3086), 1, + anon_sym_LF, + STATE(2748), 1, + sym_test, + STATE(2802), 1, + sym_config_entry, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3072), 2, + sym_integer, + sym_float, + STATE(2749), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2763), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [146935] = 5, + STATE(1535), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, + ACTIONS(3088), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1469), 3, + ACTIONS(1459), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 10, + ACTIONS(1461), 10, sym__newline, anon_sym_as, anon_sym_in, @@ -146847,147 +148581,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_is, - [148899] = 14, + [146964] = 4, + ACTIONS(3064), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1419), 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, + [146991] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, sym_float, - ACTIONS(3072), 1, + ACTIONS(3090), 1, anon_sym_RBRACE, - STATE(2686), 1, + STATE(2697), 1, sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, - STATE(2946), 1, + STATE(2970), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2782), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [148946] = 13, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(417), 1, - anon_sym_STAR_STAR, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3074), 1, - anon_sym_RBRACE, - ACTIONS(3076), 1, - anon_sym_LF, - STATE(2817), 1, - sym_config_entry, - STATE(2866), 1, - sym_test, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3054), 2, - sym_integer, - sym_float, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [148991] = 14, + [147038] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, - sym_float, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, ACTIONS(3078), 1, + sym_float, + ACTIONS(3092), 1, anon_sym_RBRACE, - STATE(2686), 1, + STATE(2697), 1, sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, - STATE(2957), 1, + STATE(3191), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [149038] = 14, + [147085] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, sym_float, - ACTIONS(3080), 1, + ACTIONS(3094), 1, anon_sym_RBRACE, - STATE(2686), 1, + STATE(2697), 1, sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, - STATE(3050), 1, + STATE(3175), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [149085] = 4, - ACTIONS(3060), 1, + [147132] = 4, + ACTIONS(3064), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1444), 13, + ACTIONS(1411), 13, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147001,92 +148726,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_PLUS_EQ, - [149112] = 13, + [147159] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(417), 1, - anon_sym_STAR_STAR, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3048), 1, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3082), 1, + ACTIONS(3072), 1, + sym_integer, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, + sym_float, + ACTIONS(3096), 1, anon_sym_RBRACE, - ACTIONS(3084), 1, - anon_sym_LF, - STATE(2817), 1, + STATE(2697), 1, sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, - ACTIONS(5), 2, + STATE(2997), 1, + sym_config_entries, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 2, - sym_integer, - sym_float, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [149157] = 14, + [147206] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, sym_float, - ACTIONS(3086), 1, + ACTIONS(3098), 1, anon_sym_RBRACE, - STATE(2686), 1, + STATE(2697), 1, sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, - STATE(2972), 1, + STATE(3025), 1, sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [149204] = 9, - ACTIONS(3060), 1, - anon_sym_PLUS, + [147253] = 9, ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1491), 7, + ACTIONS(1291), 7, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, @@ -147094,123 +148820,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_for, anon_sym_PLUS_EQ, - [149241] = 14, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, - sym_integer, - ACTIONS(3056), 1, - sym_float, - ACTIONS(3092), 1, - anon_sym_RBRACE, - STATE(2686), 1, - sym_config_entry, - STATE(2866), 1, - sym_test, - STATE(2963), 1, - sym_config_entries, + [147290] = 7, + ACTIONS(3064), 1, + anon_sym_PLUS, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2782), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [149288] = 13, - ACTIONS(403), 1, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1301), 9, + anon_sym_as, anon_sym_if, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, - sym_integer, - ACTIONS(3056), 1, - sym_float, - ACTIONS(3094), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, anon_sym_RBRACE, - STATE(2805), 1, - sym_config_entry, - STATE(2866), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2814), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2782), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [149332] = 13, + anon_sym_for, + anon_sym_PLUS_EQ, + [147323] = 14, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, sym_float, - ACTIONS(3094), 1, + ACTIONS(3108), 1, anon_sym_RBRACE, - STATE(2817), 1, + STATE(2697), 1, sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, + STATE(3042), 1, + sym_config_entries, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [149376] = 14, - ACTIONS(3096), 1, + [147370] = 14, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3100), 1, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3102), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - STATE(2612), 1, + STATE(2623), 1, sym_for_in_clause, - STATE(2776), 1, + STATE(2760), 1, aux_sym__collection_elements_repeat1, - STATE(3153), 1, + STATE(3129), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -147218,59 +148908,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149422] = 10, + [147416] = 10, ACTIONS(41), 1, anon_sym_AT, - ACTIONS(3112), 1, + ACTIONS(3126), 1, anon_sym_LBRACK, - ACTIONS(3114), 1, + ACTIONS(3128), 1, anon_sym_schema, - ACTIONS(3116), 1, + ACTIONS(3130), 1, anon_sym_mixin, - ACTIONS(3118), 1, + ACTIONS(3132), 1, anon_sym_protocol, - ACTIONS(3120), 1, + ACTIONS(3134), 1, anon_sym_rule, - ACTIONS(3122), 1, + ACTIONS(3136), 1, anon_sym_check, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2515), 2, + STATE(2545), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - STATE(1797), 6, + STATE(1714), 6, sym_schema_index_signature, sym_schema_statement, sym_mixin_statement, sym_protocol_statement, sym_rule_statement, sym_check_statement, - [149460] = 14, - ACTIONS(3096), 1, + [147454] = 10, + ACTIONS(41), 1, + anon_sym_AT, + ACTIONS(3138), 1, + anon_sym_LBRACK, + ACTIONS(3140), 1, + anon_sym_schema, + ACTIONS(3142), 1, + anon_sym_mixin, + ACTIONS(3144), 1, + anon_sym_protocol, + ACTIONS(3146), 1, + anon_sym_rule, + ACTIONS(3148), 1, + anon_sym_check, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2545), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(1713), 6, + sym_schema_index_signature, + sym_schema_statement, + sym_mixin_statement, + sym_protocol_statement, + sym_rule_statement, + sym_check_statement, + [147492] = 14, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3100), 1, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3102), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - STATE(2612), 1, + STATE(2623), 1, sym_for_in_clause, - STATE(2776), 1, + STATE(2760), 1, aux_sym__collection_elements_repeat1, - STATE(2982), 1, + STATE(3063), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -147278,31 +148996,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149506] = 14, - ACTIONS(3096), 1, + [147538] = 14, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3100), 1, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3102), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - STATE(2612), 1, + STATE(2623), 1, sym_for_in_clause, - STATE(2776), 1, + STATE(2760), 1, aux_sym__collection_elements_repeat1, - STATE(3204), 1, + STATE(3209), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -147310,31 +149028,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149552] = 14, - ACTIONS(3096), 1, + [147584] = 14, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3100), 1, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3102), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - STATE(2612), 1, + STATE(2623), 1, sym_for_in_clause, - STATE(2776), 1, + STATE(2760), 1, aux_sym__collection_elements_repeat1, - STATE(2968), 1, + STATE(2998), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -147342,31 +149060,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149598] = 14, - ACTIONS(3096), 1, + [147630] = 14, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3100), 1, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3102), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - STATE(2612), 1, + STATE(2623), 1, sym_for_in_clause, - STATE(2776), 1, + STATE(2760), 1, aux_sym__collection_elements_repeat1, - STATE(3121), 1, + STATE(3024), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -147374,31 +149092,92 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149644] = 14, - ACTIONS(3096), 1, + [147676] = 12, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(417), 1, + anon_sym_STAR_STAR, + ACTIONS(439), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LF, + STATE(2748), 1, + sym_test, + STATE(2802), 1, + sym_config_entry, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3072), 2, + sym_integer, + sym_float, + STATE(2749), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2763), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [147718] = 13, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(3072), 1, + sym_integer, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, + sym_float, + ACTIONS(3152), 1, + anon_sym_RBRACE, + STATE(2748), 1, + sym_test, + STATE(2824), 1, + sym_config_entry, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2749), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2763), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [147762] = 14, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3100), 1, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3102), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - STATE(2612), 1, + STATE(2623), 1, sym_for_in_clause, - STATE(2776), 1, + STATE(2760), 1, aux_sym__collection_elements_repeat1, - STATE(3051), 1, + STATE(3043), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -147406,31 +149185,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149690] = 14, - ACTIONS(3096), 1, + [147808] = 13, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(3072), 1, + sym_integer, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, + sym_float, + ACTIONS(3154), 1, + anon_sym_RBRACE, + STATE(2748), 1, + sym_test, + STATE(2802), 1, + sym_config_entry, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2749), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2763), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [147852] = 14, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3100), 1, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3102), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - STATE(2612), 1, + STATE(2623), 1, sym_for_in_clause, - STATE(2776), 1, + STATE(2760), 1, aux_sym__collection_elements_repeat1, - STATE(2959), 1, + STATE(2971), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -147438,59 +149248,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149736] = 10, - ACTIONS(41), 1, - anon_sym_AT, - ACTIONS(3124), 1, - anon_sym_LBRACK, - ACTIONS(3126), 1, - anon_sym_schema, - ACTIONS(3128), 1, - anon_sym_mixin, - ACTIONS(3130), 1, - anon_sym_protocol, - ACTIONS(3132), 1, - anon_sym_rule, - ACTIONS(3134), 1, - anon_sym_check, + [147898] = 13, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(3072), 1, + sym_integer, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, + sym_float, + ACTIONS(3156), 1, + anon_sym_RBRACE, + STATE(2748), 1, + sym_test, + STATE(2802), 1, + sym_config_entry, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2515), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(1702), 6, - sym_schema_index_signature, - sym_schema_statement, - sym_mixin_statement, - sym_protocol_statement, - sym_rule_statement, - sym_check_statement, - [149774] = 14, - ACTIONS(3096), 1, + STATE(2749), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2763), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [147942] = 14, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3100), 1, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3102), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - STATE(2612), 1, + STATE(2623), 1, sym_for_in_clause, - STATE(2776), 1, + STATE(2760), 1, aux_sym__collection_elements_repeat1, - STATE(2988), 1, + STATE(3180), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -147498,31 +149311,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149820] = 14, - ACTIONS(3096), 1, + [147988] = 14, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3100), 1, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(3102), 1, + ACTIONS(3116), 1, anon_sym_RBRACK, - ACTIONS(3104), 1, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - STATE(2612), 1, + STATE(2623), 1, sym_for_in_clause, - STATE(2776), 1, + STATE(2760), 1, aux_sym__collection_elements_repeat1, - STATE(3080), 1, + STATE(3090), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, @@ -147530,140 +149343,79 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [149866] = 13, + [148034] = 13, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, - sym_float, - ACTIONS(3136), 1, - anon_sym_RBRACE, - STATE(2817), 1, - sym_config_entry, - STATE(2866), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2814), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2782), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [149910] = 13, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3052), 1, + ACTIONS(3076), 1, anon_sym_STAR_STAR, - ACTIONS(3054), 1, - sym_integer, - ACTIONS(3056), 1, + ACTIONS(3078), 1, sym_float, - ACTIONS(3138), 1, + ACTIONS(3154), 1, anon_sym_RBRACE, - STATE(2805), 1, - sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2814), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2782), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [149954] = 12, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(417), 1, - anon_sym_STAR_STAR, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3140), 1, - anon_sym_LF, - STATE(2817), 1, + STATE(2824), 1, sym_config_entry, - STATE(2866), 1, - sym_test, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 2, - sym_integer, - sym_float, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [149996] = 12, + [148078] = 12, ACTIONS(403), 1, anon_sym_if, - ACTIONS(503), 1, + ACTIONS(461), 1, sym_string_start, - ACTIONS(547), 1, + ACTIONS(549), 1, anon_sym_LPAREN, - ACTIONS(3048), 1, + ACTIONS(3066), 1, sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, + ACTIONS(3072), 1, sym_integer, - ACTIONS(3056), 1, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, sym_float, - STATE(2805), 1, - sym_config_entry, - STATE(2866), 1, + STATE(2748), 1, sym_test, + STATE(2824), 1, + sym_config_entry, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2814), 2, + STATE(2749), 2, sym_dictionary_splat, sym_if_entry, - STATE(2782), 3, + STATE(2763), 3, sym_dotted_name, sym_paren_expression, sym_string, - [150037] = 4, - ACTIONS(3142), 1, + [148119] = 4, + ACTIONS(3158), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1444), 11, + ACTIONS(1415), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147675,45 +149427,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [150062] = 12, - ACTIONS(403), 1, - anon_sym_if, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(547), 1, - anon_sym_LPAREN, - ACTIONS(3048), 1, - sym_identifier, - ACTIONS(3052), 1, - anon_sym_STAR_STAR, - ACTIONS(3054), 1, - sym_integer, - ACTIONS(3056), 1, - sym_float, - STATE(2817), 1, - sym_config_entry, - STATE(2866), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2814), 2, - sym_dictionary_splat, - sym_if_entry, - STATE(2782), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [150103] = 4, - ACTIONS(3142), 1, + [148144] = 4, + ACTIONS(3158), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 11, + ACTIONS(1411), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147725,16 +149448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [150128] = 4, - ACTIONS(3142), 1, + [148169] = 4, + ACTIONS(3158), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1440), 11, + ACTIONS(1419), 11, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -147746,23 +149469,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PLUS_EQ, anon_sym_then, - [150153] = 7, - ACTIONS(3142), 1, + [148194] = 12, + ACTIONS(403), 1, + anon_sym_if, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(549), 1, + anon_sym_LPAREN, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(3072), 1, + sym_integer, + ACTIONS(3076), 1, + anon_sym_STAR_STAR, + ACTIONS(3078), 1, + sym_float, + STATE(2748), 1, + sym_test, + STATE(2802), 1, + sym_config_entry, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2749), 2, + sym_dictionary_splat, + sym_if_entry, + STATE(2763), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [148235] = 7, + ACTIONS(3158), 1, anon_sym_PLUS, - ACTIONS(3144), 1, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1485), 7, + ACTIONS(1301), 7, anon_sym_as, anon_sym_if, anon_sym_COLON, @@ -147770,175 +149522,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_then, - [150184] = 9, - ACTIONS(3142), 1, + [148266] = 9, + ACTIONS(3158), 1, anon_sym_PLUS, - ACTIONS(3144), 1, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1491), 5, + ACTIONS(1291), 5, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_then, - [150219] = 12, - ACTIONS(3096), 1, - anon_sym_as, - ACTIONS(3098), 1, - anon_sym_if, - ACTIONS(3106), 1, - anon_sym_and, - ACTIONS(3108), 1, - anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, - ACTIONS(3152), 1, - anon_sym_COMMA, - ACTIONS(3154), 1, - anon_sym_COLON, - ACTIONS(3156), 1, - anon_sym_RBRACK, - STATE(2779), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150259] = 4, - ACTIONS(3110), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 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, - [150283] = 7, - ACTIONS(3106), 1, - anon_sym_and, - ACTIONS(3108), 1, - anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1485), 6, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - [150313] = 12, - ACTIONS(3096), 1, - anon_sym_as, - ACTIONS(3098), 1, - anon_sym_if, - ACTIONS(3106), 1, - anon_sym_and, - ACTIONS(3108), 1, - anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, - ACTIONS(3154), 1, - anon_sym_COLON, - ACTIONS(3158), 1, - anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_RBRACK, - STATE(2865), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [150353] = 10, - ACTIONS(3060), 1, - anon_sym_PLUS, + [148301] = 10, ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3164), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3170), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, + ACTIONS(3168), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [150389] = 12, - ACTIONS(3096), 1, + [148337] = 12, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3154), 1, - anon_sym_COLON, - ACTIONS(3166), 1, + ACTIONS(3172), 1, anon_sym_COMMA, - ACTIONS(3168), 1, + ACTIONS(3174), 1, + anon_sym_COLON, + ACTIONS(3176), 1, anon_sym_RBRACK, - STATE(2810), 1, + STATE(2733), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -147946,27 +149599,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [150429] = 12, - ACTIONS(3096), 1, + [148377] = 12, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3154), 1, + ACTIONS(3174), 1, anon_sym_COLON, - ACTIONS(3170), 1, + ACTIONS(3178), 1, anon_sym_COMMA, - ACTIONS(3172), 1, + ACTIONS(3180), 1, anon_sym_RBRACK, - STATE(2734), 1, + STATE(2868), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -147974,144 +149627,221 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [150469] = 10, - ACTIONS(3060), 1, - anon_sym_PLUS, + [148417] = 10, ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3174), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3182), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, + ACTIONS(3168), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [150505] = 10, - ACTIONS(3060), 1, - anon_sym_PLUS, + [148453] = 10, ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3176), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3184), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, + ACTIONS(3168), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [150541] = 5, - STATE(337), 1, - aux_sym_dotted_name_repeat1, + [148489] = 4, + ACTIONS(3124), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3178), 2, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 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, - ACTIONS(1467), 8, - sym_string_start, - anon_sym_in, + anon_sym_and, + anon_sym_or, + [148513] = 8, + ACTIONS(2201), 1, anon_sym_not, + ACTIONS(2207), 1, + anon_sym_is, + ACTIONS(3188), 1, + anon_sym_EQ, + STATE(2214), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2205), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3186), 2, + anon_sym_COLON, + anon_sym_PLUS_EQ, + ACTIONS(2199), 5, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_is, - [150567] = 10, - ACTIONS(3060), 1, - anon_sym_PLUS, - ACTIONS(3064), 1, + [148545] = 12, + ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3112), 1, + anon_sym_if, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3124), 1, + anon_sym_PLUS, + ACTIONS(3174), 1, + anon_sym_COLON, + ACTIONS(3190), 1, + anon_sym_COMMA, + ACTIONS(3192), 1, + anon_sym_RBRACK, + STATE(2756), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [148585] = 12, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3180), 1, - anon_sym_RBRACE, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, + anon_sym_PLUS, + ACTIONS(3174), 1, + anon_sym_COLON, + ACTIONS(3194), 1, + anon_sym_COMMA, + ACTIONS(3196), 1, + anon_sym_RBRACK, + STATE(2797), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150603] = 10, - ACTIONS(3060), 1, - anon_sym_PLUS, + [148625] = 10, ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3182), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3198), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, + ACTIONS(3168), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [150639] = 4, - ACTIONS(3110), 1, + [148661] = 8, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + ACTIONS(3188), 1, + anon_sym_EQ, + STATE(2131), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3186), 2, + anon_sym_COLON, + anon_sym_PLUS_EQ, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [148693] = 4, + ACTIONS(3124), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1444), 10, + ACTIONS(1411), 10, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -148122,24 +149852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [150663] = 12, - ACTIONS(3096), 1, + [148717] = 12, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3154), 1, + ACTIONS(3174), 1, anon_sym_COLON, - ACTIONS(3184), 1, + ACTIONS(3200), 1, anon_sym_COMMA, - ACTIONS(3186), 1, + ACTIONS(3202), 1, anon_sym_RBRACK, - STATE(2744), 1, + STATE(2822), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -148147,79 +149877,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [150703] = 10, - ACTIONS(3060), 1, - anon_sym_PLUS, + [148757] = 10, ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3188), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3204), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, + ACTIONS(3168), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [150739] = 10, - ACTIONS(3060), 1, - anon_sym_PLUS, - ACTIONS(3064), 1, + [148793] = 7, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3190), 1, - anon_sym_RBRACE, + ACTIONS(3124), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, + ACTIONS(1301), 6, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150775] = 12, - ACTIONS(3096), 1, + anon_sym_RBRACK, + anon_sym_for, + [148823] = 12, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3154), 1, + ACTIONS(3174), 1, anon_sym_COLON, - ACTIONS(3192), 1, + ACTIONS(3206), 1, anon_sym_COMMA, - ACTIONS(3194), 1, + ACTIONS(3208), 1, anon_sym_RBRACK, - STATE(2832), 1, + STATE(2838), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -148227,27 +149954,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [150815] = 12, - ACTIONS(3096), 1, + [148863] = 10, + ACTIONS(3064), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3106), 1, anon_sym_or, + ACTIONS(3210), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(3168), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [148899] = 12, ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3112), 1, + anon_sym_if, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3154), 1, + ACTIONS(3174), 1, anon_sym_COLON, - ACTIONS(3196), 1, + ACTIONS(3212), 1, anon_sym_COMMA, - ACTIONS(3198), 1, + ACTIONS(3214), 1, anon_sym_RBRACK, - STATE(2766), 1, + STATE(2836), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -148255,130 +150008,125 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [150855] = 9, - ACTIONS(3096), 1, + [148939] = 10, + ACTIONS(3064), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, + ACTIONS(3216), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1491), 4, - anon_sym_COMMA, + ACTIONS(3168), 3, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_for, - [150889] = 12, - ACTIONS(3096), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [148975] = 10, + ACTIONS(3064), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, - ACTIONS(3154), 1, - anon_sym_COLON, - ACTIONS(3200), 1, - anon_sym_COMMA, - ACTIONS(3202), 1, - anon_sym_RBRACK, - STATE(2719), 1, - aux_sym_subscript_repeat1, + ACTIONS(3218), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [150929] = 8, - ACTIONS(2183), 1, - anon_sym_not, - ACTIONS(2195), 1, - anon_sym_is, - ACTIONS(3206), 1, - anon_sym_EQ, - STATE(2188), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3204), 2, + ACTIONS(3168), 3, anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, - ACTIONS(2181), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [150961] = 10, - ACTIONS(3060), 1, - anon_sym_PLUS, + [149011] = 10, ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + anon_sym_PLUS, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3208), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3220), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, + ACTIONS(3168), 3, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, - [150997] = 12, - ACTIONS(3096), 1, + [149047] = 4, + ACTIONS(3124), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1419), 10, + anon_sym_DOT, anon_sym_as, - ACTIONS(3098), 1, anon_sym_if, - ACTIONS(3106), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_for, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3108), 1, anon_sym_or, + [149071] = 12, ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3112), 1, + anon_sym_if, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3154), 1, + ACTIONS(3174), 1, anon_sym_COLON, - ACTIONS(3210), 1, + ACTIONS(3222), 1, anon_sym_COMMA, - ACTIONS(3212), 1, + ACTIONS(3224), 1, anon_sym_RBRACK, - STATE(2710), 1, + STATE(2804), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, @@ -148386,768 +150134,769 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151037] = 8, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - ACTIONS(3206), 1, - anon_sym_EQ, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, + [149111] = 5, + STATE(634), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(1459), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3204), 2, - anon_sym_COLON, - anon_sym_PLUS_EQ, - ACTIONS(2099), 5, + ACTIONS(3226), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1461), 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, - [151069] = 10, - ACTIONS(3060), 1, - anon_sym_PLUS, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + anon_sym_is, + [149137] = 12, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3214), 1, - anon_sym_RBRACE, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, + anon_sym_PLUS, + ACTIONS(3174), 1, + anon_sym_COLON, + ACTIONS(3228), 1, + anon_sym_COMMA, + ACTIONS(3230), 1, + anon_sym_RBRACK, + STATE(2741), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [151105] = 4, + [149177] = 9, ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3112), 1, + anon_sym_if, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 10, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(1291), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_for, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151129] = 11, - ACTIONS(3216), 1, - anon_sym_as, - ACTIONS(3218), 1, - anon_sym_if, - ACTIONS(3220), 1, - anon_sym_COMMA, - ACTIONS(3222), 1, - anon_sym_RPAREN, - ACTIONS(3224), 1, - anon_sym_and, - ACTIONS(3226), 1, - anon_sym_or, - ACTIONS(3228), 1, - anon_sym_PLUS, - STATE(2728), 1, - aux_sym_argument_list_repeat1, + [149211] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(2131), 1, + aux_sym_comparison_operator_repeat1, + STATE(2945), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151166] = 8, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [149242] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, - STATE(2934), 1, + STATE(2961), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [151197] = 9, - ACTIONS(3230), 1, - anon_sym_as, + [149273] = 11, ACTIONS(3232), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3234), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3236), 1, - anon_sym_or, + anon_sym_COMMA, ACTIONS(3238), 1, + anon_sym_RPAREN, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, anon_sym_PLUS, + STATE(2739), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1491), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_else, - [151230] = 11, - ACTIONS(3216), 1, - anon_sym_as, - ACTIONS(3218), 1, - anon_sym_if, - ACTIONS(3224), 1, + [149310] = 9, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3228), 1, - anon_sym_PLUS, - ACTIONS(3240), 1, - anon_sym_COMMA, - ACTIONS(3242), 1, - anon_sym_RPAREN, - STATE(2788), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3164), 1, + anon_sym_as, + ACTIONS(3166), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151267] = 4, - ACTIONS(3238), 1, + ACTIONS(3246), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [149343] = 4, + ACTIONS(3248), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 9, - sym__newline, + ACTIONS(1411), 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, - [151290] = 11, - ACTIONS(3216), 1, + [149366] = 11, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3240), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3242), 1, anon_sym_or, - ACTIONS(3228), 1, - anon_sym_PLUS, ACTIONS(3244), 1, + anon_sym_PLUS, + ACTIONS(3250), 1, anon_sym_COMMA, - ACTIONS(3246), 1, + ACTIONS(3252), 1, anon_sym_RPAREN, - STATE(2867), 1, + STATE(2869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151327] = 11, - ACTIONS(3216), 1, + [149403] = 10, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3248), 1, - anon_sym_COMMA, - ACTIONS(3250), 1, - anon_sym_RPAREN, - STATE(2714), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + ACTIONS(874), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151364] = 11, - ACTIONS(3216), 1, - anon_sym_as, - ACTIONS(3218), 1, - anon_sym_if, - ACTIONS(3224), 1, - anon_sym_and, - ACTIONS(3226), 1, - anon_sym_or, - ACTIONS(3228), 1, - anon_sym_PLUS, - ACTIONS(3252), 1, - anon_sym_COMMA, + [149438] = 4, ACTIONS(3254), 1, - anon_sym_RPAREN, - STATE(2746), 1, - aux_sym_argument_list_repeat1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151401] = 10, - ACTIONS(2764), 1, - anon_sym_LF, - ACTIONS(3256), 1, + ACTIONS(1411), 9, + sym__newline, + anon_sym_DOT, anon_sym_as, - ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3260), 1, + anon_sym_COMMA, + anon_sym_else, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + [149461] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(2131), 1, + aux_sym_comparison_operator_repeat1, + STATE(2904), 1, + sym_string, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2762), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151436] = 10, - ACTIONS(854), 1, - anon_sym_COLON, - ACTIONS(3096), 1, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [149492] = 9, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3260), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(852), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1430), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151471] = 8, + ACTIONS(1291), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_else, + [149525] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, - STATE(2873), 1, + STATE(2910), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [151502] = 8, + [149556] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, - STATE(2876), 1, + STATE(2928), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [151533] = 10, - 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(3268), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3266), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151568] = 9, - ACTIONS(3142), 1, - anon_sym_PLUS, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, - anon_sym_as, - ACTIONS(3150), 1, - anon_sym_if, + [149587] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(2131), 1, + aux_sym_comparison_operator_repeat1, + STATE(2902), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3270), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [151601] = 7, - ACTIONS(3234), 1, - anon_sym_and, - ACTIONS(3236), 1, - anon_sym_or, - ACTIONS(3238), 1, - anon_sym_PLUS, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [149618] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(2131), 1, + aux_sym_comparison_operator_repeat1, + STATE(2940), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1485), 5, - sym__newline, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - [151630] = 4, - ACTIONS(3238), 1, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [149649] = 4, + ACTIONS(3248), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1440), 9, - sym__newline, + ACTIONS(1415), 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, - [151653] = 8, + [149672] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, - STATE(2885), 1, + STATE(2921), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [151684] = 11, - ACTIONS(3216), 1, + [149703] = 10, + ACTIONS(3264), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3266), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3270), 1, anon_sym_and, - ACTIONS(3226), 1, - anon_sym_or, - ACTIONS(3228), 1, - anon_sym_PLUS, ACTIONS(3272), 1, - anon_sym_COMMA, + anon_sym_or, ACTIONS(3274), 1, - anon_sym_RPAREN, - STATE(2824), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + anon_sym_PLUS, + ACTIONS(3276), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(882), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + ACTIONS(3268), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1567), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151721] = 8, + [149738] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, - STATE(2887), 1, + STATE(2901), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [151752] = 11, - ACTIONS(3216), 1, - anon_sym_as, - ACTIONS(3218), 1, - anon_sym_if, - ACTIONS(3224), 1, - anon_sym_and, - ACTIONS(3226), 1, - anon_sym_or, - ACTIONS(3228), 1, - anon_sym_PLUS, - ACTIONS(3276), 1, - anon_sym_COMMA, - ACTIONS(3278), 1, - anon_sym_RPAREN, - STATE(2835), 1, - aux_sym_argument_list_repeat1, + [149769] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(2131), 1, + aux_sym_comparison_operator_repeat1, + STATE(2923), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1603), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [151789] = 9, - ACTIONS(3142), 1, - anon_sym_PLUS, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, - anon_sym_as, - ACTIONS(3150), 1, - anon_sym_if, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [149800] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(2131), 1, + aux_sym_comparison_operator_repeat1, + STATE(2941), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(3162), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [151822] = 4, - ACTIONS(3238), 1, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [149831] = 9, + ACTIONS(3248), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(3278), 1, anon_sym_as, + ACTIONS(3280), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_QMARK_DOT, + ACTIONS(3284), 1, anon_sym_and, + ACTIONS(3286), 1, anon_sym_or, - [151845] = 4, - ACTIONS(3280), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 9, + ACTIONS(559), 2, 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_and, - anon_sym_or, - [151868] = 4, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1440), 9, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(3282), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [151891] = 10, - ACTIONS(1491), 1, - anon_sym_LF, - ACTIONS(3256), 1, + [149864] = 11, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3258), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3260), 1, + ACTIONS(3240), 1, anon_sym_and, - ACTIONS(3262), 1, + ACTIONS(3242), 1, anon_sym_or, - ACTIONS(3264), 1, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3288), 1, + anon_sym_COMMA, + ACTIONS(3290), 1, + anon_sym_RPAREN, + STATE(2805), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1493), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1501), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [151926] = 7, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3282), 1, + [149901] = 11, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3234), 1, + anon_sym_if, + ACTIONS(3240), 1, anon_sym_and, - ACTIONS(3284), 1, + ACTIONS(3242), 1, anon_sym_or, + ACTIONS(3244), 1, + anon_sym_PLUS, + ACTIONS(3292), 1, + anon_sym_COMMA, + ACTIONS(3294), 1, + anon_sym_RPAREN, + STATE(2757), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1485), 5, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [151955] = 4, - ACTIONS(3280), 1, + [149938] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(2131), 1, + aux_sym_comparison_operator_repeat1, + STATE(2926), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [149969] = 4, + ACTIONS(3254), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1444), 9, + ACTIONS(1419), 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, - [151978] = 11, - ACTIONS(3216), 1, + [149992] = 11, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3240), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3242), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(3286), 1, + ACTIONS(3296), 1, anon_sym_COMMA, - ACTIONS(3288), 1, + ACTIONS(3298), 1, anon_sym_RPAREN, - STATE(2770), 1, + STATE(2731), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152015] = 9, - ACTIONS(3064), 1, + [150029] = 8, + ACTIONS(1301), 1, + anon_sym_LF, + ACTIONS(3270), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3272), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3274), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(882), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1299), 4, anon_sym_as, - ACTIONS(3292), 1, + anon_sym_if, anon_sym_COMMA, - ACTIONS(3294), 1, + anon_sym_RBRACE, + [150060] = 9, + ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, anon_sym_PLUS, + ACTIONS(3302), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3290), 3, + ACTIONS(3300), 3, anon_sym_if, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_for, - [152048] = 5, - ACTIONS(1444), 1, + [150093] = 8, + ACTIONS(431), 1, + sym_string_start, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(2131), 1, + aux_sym_comparison_operator_repeat1, + STATE(2954), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [150124] = 5, + ACTIONS(1415), 1, anon_sym_LF, - ACTIONS(3264), 1, + ACTIONS(3274), 1, anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, + STATE(1567), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1446), 8, + ACTIONS(1413), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -149156,805 +150905,784 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [152073] = 10, - ACTIONS(3096), 1, - anon_sym_as, - ACTIONS(3098), 1, - anon_sym_if, - ACTIONS(3106), 1, - anon_sym_and, - ACTIONS(3108), 1, - anon_sym_or, - ACTIONS(3110), 1, + [150149] = 5, + ACTIONS(1411), 1, + anon_sym_LF, + ACTIONS(3274), 1, anon_sym_PLUS, - ACTIONS(3154), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3296), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1430), 2, + STATE(1567), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152108] = 10, - ACTIONS(3096), 1, + ACTIONS(1409), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(3098), 1, anon_sym_if, - ACTIONS(3106), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3108), 1, anon_sym_or, - ACTIONS(3110), 1, + [150174] = 4, + ACTIONS(3248), 1, anon_sym_PLUS, - ACTIONS(3298), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1037), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1430), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152143] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3282), 1, + ACTIONS(1419), 9, + 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_and, - ACTIONS(3284), 1, anon_sym_or, - ACTIONS(3300), 1, + [150197] = 9, + ACTIONS(3248), 1, + anon_sym_PLUS, + ACTIONS(3278), 1, anon_sym_as, - ACTIONS(3302), 1, + ACTIONS(3280), 1, anon_sym_if, + ACTIONS(3284), 1, + anon_sym_and, + ACTIONS(3286), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1491), 3, + ACTIONS(1291), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, - [152176] = 5, - ACTIONS(1440), 1, - anon_sym_LF, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1442), 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, - [152201] = 11, - ACTIONS(3216), 1, + [150230] = 11, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3240), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3242), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3244), 1, anon_sym_PLUS, ACTIONS(3304), 1, anon_sym_COMMA, ACTIONS(3306), 1, anon_sym_RPAREN, - STATE(2718), 1, + STATE(2813), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152238] = 8, - ACTIONS(1485), 1, - anon_sym_LF, + [150267] = 7, + ACTIONS(3254), 1, + anon_sym_PLUS, ACTIONS(3260), 1, anon_sym_and, ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3264), 1, - anon_sym_PLUS, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(886), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1501), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1487), 4, + ACTIONS(1301), 5, + sym__newline, anon_sym_as, anon_sym_if, anon_sym_COMMA, - anon_sym_RBRACE, - [152269] = 9, - ACTIONS(3096), 1, - anon_sym_as, - ACTIONS(3106), 1, + anon_sym_else, + [150296] = 9, + ACTIONS(3158), 1, + anon_sym_PLUS, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, - ACTIONS(3308), 1, - anon_sym_COMMA, + ACTIONS(3164), 1, + anon_sym_as, + ACTIONS(3166), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3290), 3, + ACTIONS(3168), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [150329] = 10, + ACTIONS(1291), 1, + anon_sym_LF, + ACTIONS(3264), 1, + anon_sym_as, + ACTIONS(3266), 1, anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [152302] = 9, - ACTIONS(3280), 1, - anon_sym_PLUS, - ACTIONS(3282), 1, + ACTIONS(3270), 1, anon_sym_and, - ACTIONS(3284), 1, + ACTIONS(3272), 1, anon_sym_or, - ACTIONS(3300), 1, - anon_sym_as, - ACTIONS(3302), 1, - anon_sym_if, - ACTIONS(3), 2, + ACTIONS(3274), 1, + anon_sym_PLUS, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(882), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + ACTIONS(1285), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1567), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3310), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [152335] = 8, + [150364] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, - STATE(2921), 1, + STATE(2905), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [152366] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [150395] = 11, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3294), 1, - anon_sym_PLUS, + ACTIONS(3260), 1, + anon_sym_and, + ACTIONS(3262), 1, + anon_sym_or, + ACTIONS(3308), 1, + anon_sym_COMMA, + ACTIONS(3310), 1, + anon_sym_else, + ACTIONS(3312), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150432] = 5, + ACTIONS(1419), 1, + anon_sym_LF, + ACTIONS(3274), 1, + anon_sym_PLUS, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + STATE(1567), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(2750), 3, + ACTIONS(1417), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_for, - [152399] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, - STATE(2918), 1, - sym_string, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [150457] = 4, + ACTIONS(3254), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [152430] = 8, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 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, + [150480] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, - STATE(2880), 1, + STATE(2909), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [152461] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, - STATE(2879), 1, - sym_string, + [150511] = 11, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3234), 1, + anon_sym_if, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, + anon_sym_PLUS, + ACTIONS(3314), 1, + anon_sym_COMMA, + ACTIONS(3316), 1, + anon_sym_RPAREN, + STATE(2821), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [152492] = 8, + ACTIONS(778), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150548] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3102), 1, + anon_sym_if, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(2782), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_for, + [150581] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, - STATE(2893), 1, + STATE(2948), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [152523] = 9, - ACTIONS(3280), 1, + [150612] = 7, + ACTIONS(3248), 1, anon_sym_PLUS, - ACTIONS(3282), 1, - anon_sym_and, ACTIONS(3284), 1, + anon_sym_and, + ACTIONS(3286), 1, anon_sym_or, - ACTIONS(3300), 1, - anon_sym_as, - ACTIONS(3302), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3312), 3, + ACTIONS(1301), 5, + anon_sym_as, + anon_sym_if, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, - [152556] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, - STATE(2920), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [152587] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, - STATE(2909), 1, - sym_string, + [150641] = 10, + ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3112), 1, + anon_sym_if, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, + anon_sym_PLUS, + ACTIONS(3174), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [152618] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, - STATE(2875), 1, - sym_string, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(3320), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150676] = 10, + ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3112), 1, + anon_sym_if, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, + anon_sym_PLUS, + ACTIONS(3322), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [152649] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, - STATE(2913), 1, - sym_string, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1066), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150711] = 11, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3234), 1, + anon_sym_if, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, + anon_sym_PLUS, + ACTIONS(3324), 1, + anon_sym_COMMA, + ACTIONS(3326), 1, + anon_sym_RPAREN, + STATE(2829), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [152680] = 8, + ACTIONS(778), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150748] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, - STATE(2891), 1, + STATE(2903), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [152711] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, - STATE(2908), 1, - sym_string, + [150779] = 11, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3234), 1, + anon_sym_if, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, + anon_sym_PLUS, + ACTIONS(3328), 1, + anon_sym_COMMA, + ACTIONS(3330), 1, + anon_sym_RPAREN, + STATE(2837), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [152742] = 5, - ACTIONS(1424), 1, + ACTIONS(778), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150816] = 10, + ACTIONS(2776), 1, anon_sym_LF, ACTIONS(3264), 1, + anon_sym_as, + ACTIONS(3266), 1, + anon_sym_if, + ACTIONS(3270), 1, + anon_sym_and, + ACTIONS(3272), 1, + anon_sym_or, + ACTIONS(3274), 1, anon_sym_PLUS, ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1426), 8, + ACTIONS(882), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + anon_sym_QMARK_DOT, + ACTIONS(2774), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [152767] = 11, - ACTIONS(3230), 1, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [150851] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3232), 1, - anon_sym_if, - ACTIONS(3234), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3238), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3314), 1, + ACTIONS(3332), 1, anon_sym_COMMA, - ACTIONS(3316), 1, - anon_sym_else, - ACTIONS(3318), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152804] = 8, - ACTIONS(431), 1, - sym_string_start, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, - STATE(2886), 1, - sym_string, + ACTIONS(3300), 3, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_for, + [150884] = 9, + ACTIONS(3248), 1, + anon_sym_PLUS, + ACTIONS(3278), 1, + anon_sym_as, + ACTIONS(3280), 1, + anon_sym_if, + ACTIONS(3284), 1, + anon_sym_and, + ACTIONS(3286), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [152835] = 8, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(3334), 3, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [150917] = 8, ACTIONS(431), 1, sym_string_start, - ACTIONS(2101), 1, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(2105), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2088), 1, + STATE(2131), 1, aux_sym_comparison_operator_repeat1, STATE(2899), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2099), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [152866] = 10, - ACTIONS(3230), 1, + [150948] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3234), 1, + ACTIONS(3102), 1, + anon_sym_if, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3238), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3320), 1, - anon_sym_if, - ACTIONS(3322), 1, - anon_sym_COMMA, - ACTIONS(3324), 1, - sym__newline, + ACTIONS(3336), 1, + anon_sym_else, + ACTIONS(3338), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152900] = 9, - ACTIONS(3096), 1, + [150982] = 8, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3098), 1, - anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3318), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3326), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1430), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152932] = 7, - ACTIONS(503), 1, + ACTIONS(3340), 3, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_for, + [151012] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3176), 1, + STATE(3197), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [152960] = 10, - ACTIONS(3230), 1, + [151040] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3234), 1, + ACTIONS(3102), 1, + anon_sym_if, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3238), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3334), 1, - anon_sym_if, ACTIONS(3336), 1, - anon_sym_COMMA, - ACTIONS(3338), 1, - sym__newline, + anon_sym_else, + ACTIONS(3348), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [152994] = 9, - ACTIONS(3096), 1, - anon_sym_as, - ACTIONS(3098), 1, - anon_sym_if, - ACTIONS(3106), 1, - anon_sym_and, - ACTIONS(3108), 1, - anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, + [151074] = 7, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3344), 1, + anon_sym_LBRACK, + ACTIONS(3346), 1, + anon_sym_LBRACE, + STATE(3198), 1, + sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(3340), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153026] = 9, - ACTIONS(3096), 1, + STATE(3119), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [151102] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3318), 1, anon_sym_PLUS, + ACTIONS(3336), 1, + anon_sym_else, + ACTIONS(3350), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1127), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1430), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153058] = 7, - ACTIONS(503), 1, + [151136] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3065), 1, + STATE(3141), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153086] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3294), 1, + [151164] = 10, + ACTIONS(3254), 1, anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_else, - ACTIONS(3344), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153120] = 8, - ACTIONS(3096), 1, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3106), 1, + ACTIONS(3260), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, + ACTIONS(3352), 1, + anon_sym_if, + ACTIONS(3354), 1, + anon_sym_COMMA, + ACTIONS(3356), 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(1430), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3346), 3, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [153150] = 9, - ACTIONS(3096), 1, + [151198] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, @@ -149962,591 +151690,689 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1037), 2, + ACTIONS(1066), 2, anon_sym_COMMA, anon_sym_RBRACK, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153182] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [151230] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3336), 1, anon_sym_else, - ACTIONS(3348), 1, + ACTIONS(3358), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153216] = 9, - ACTIONS(3216), 1, + [151264] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3124), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3350), 2, + ACTIONS(3360), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1603), 2, + anon_sym_RBRACK, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153248] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [151296] = 9, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_else, - ACTIONS(3352), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + ACTIONS(3362), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153282] = 9, - ACTIONS(3216), 1, + [151328] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3124), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3354), 2, + ACTIONS(3364), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1603), 2, + anon_sym_RBRACK, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153314] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [151360] = 9, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_else, - ACTIONS(3356), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + ACTIONS(3366), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153348] = 7, - ACTIONS(503), 1, + [151392] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3115), 1, + STATE(3145), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153376] = 7, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(3328), 1, - sym_identifier, - ACTIONS(3330), 1, - anon_sym_LBRACK, - ACTIONS(3332), 1, - anon_sym_LBRACE, - STATE(3119), 1, - sym_quant_target, + [151420] = 7, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153404] = 7, - ACTIONS(503), 1, + ACTIONS(778), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1301), 4, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + [151448] = 9, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3234), 1, + anon_sym_if, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(778), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1291), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [151480] = 4, + ACTIONS(3244), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1411), 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, + [151502] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3151), 1, + STATE(3120), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153432] = 7, - ACTIONS(503), 1, + [151530] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3152), 1, + STATE(3189), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153460] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [151558] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_else, - ACTIONS(3358), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [153494] = 10, - ACTIONS(3230), 1, - anon_sym_as, - ACTIONS(3234), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3238), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3360), 1, - anon_sym_if, - ACTIONS(3362), 1, - anon_sym_COMMA, - ACTIONS(3364), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + ACTIONS(986), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153528] = 7, - ACTIONS(503), 1, + [151590] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3155), 1, + STATE(3099), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153556] = 7, - ACTIONS(2467), 1, - anon_sym_not, - ACTIONS(2475), 1, - anon_sym_is, - ACTIONS(3366), 1, - sym__newline, - STATE(2203), 1, - aux_sym_comparison_operator_repeat1, + [151618] = 10, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3102), 1, + anon_sym_if, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, + anon_sym_PLUS, + ACTIONS(3336), 1, + anon_sym_else, + ACTIONS(3368), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2465), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [153584] = 7, - ACTIONS(503), 1, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [151652] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3232), 1, + STATE(3182), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153612] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [151680] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3336), 1, anon_sym_else, - ACTIONS(3368), 1, + ACTIONS(3370), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153646] = 10, - ACTIONS(3064), 1, + [151714] = 4, + ACTIONS(3244), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1661), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1415), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3066), 1, anon_sym_or, - ACTIONS(3088), 1, + [151736] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2776), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [151768] = 10, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3102), 1, + anon_sym_if, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, + anon_sym_PLUS, + ACTIONS(3336), 1, anon_sym_else, - ACTIONS(3370), 1, + ACTIONS(3372), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153680] = 9, - ACTIONS(3216), 1, + [151802] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3318), 1, anon_sym_PLUS, + ACTIONS(3336), 1, + anon_sym_else, + ACTIONS(3374), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1491), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1603), 2, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [151836] = 7, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3344), 1, + anon_sym_LBRACK, + ACTIONS(3346), 1, + anon_sym_LBRACE, + STATE(3194), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3119), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [151864] = 10, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3102), 1, + anon_sym_if, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, + anon_sym_PLUS, + ACTIONS(3336), 1, + anon_sym_else, + ACTIONS(3376), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153712] = 7, - ACTIONS(503), 1, + [151898] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3156), 1, + STATE(3185), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153740] = 4, - ACTIONS(3228), 1, + [151926] = 10, + ACTIONS(3254), 1, anon_sym_PLUS, + ACTIONS(3256), 1, + anon_sym_as, + ACTIONS(3260), 1, + anon_sym_and, + ACTIONS(3262), 1, + anon_sym_or, + ACTIONS(3378), 1, + anon_sym_if, + ACTIONS(3380), 1, + anon_sym_COMMA, + ACTIONS(3382), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1444), 8, - anon_sym_DOT, + [151960] = 10, + ACTIONS(3100), 1, anon_sym_as, + ACTIONS(3102), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, + ACTIONS(3104), 1, anon_sym_and, + ACTIONS(3106), 1, anon_sym_or, - [153762] = 4, - ACTIONS(3228), 1, + ACTIONS(3318), 1, anon_sym_PLUS, + ACTIONS(3336), 1, + anon_sym_else, + ACTIONS(3384), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1440), 8, - anon_sym_DOT, + [151994] = 10, + ACTIONS(3100), 1, anon_sym_as, + ACTIONS(3102), 1, anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [153784] = 7, - ACTIONS(3224), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3318), 1, anon_sym_PLUS, + ACTIONS(3336), 1, + anon_sym_else, + ACTIONS(3386), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1485), 4, - anon_sym_as, - anon_sym_if, - anon_sym_COMMA, - anon_sym_RPAREN, - [153812] = 7, - ACTIONS(503), 1, + [152028] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3159), 1, + STATE(3178), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153840] = 7, - ACTIONS(503), 1, + [152056] = 7, + ACTIONS(2441), 1, + anon_sym_not, + ACTIONS(2457), 1, + anon_sym_is, + ACTIONS(3388), 1, + sym__newline, + STATE(2227), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2455), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [152084] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3160), 1, + STATE(3186), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [153868] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [152112] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2764), 2, + ACTIONS(3390), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1204), 2, + anon_sym_RBRACK, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [153900] = 7, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(3328), 1, - sym_identifier, - ACTIONS(3330), 1, - anon_sym_LBRACK, - ACTIONS(3332), 1, - anon_sym_LBRACE, - STATE(3163), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3195), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153928] = 7, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(3328), 1, - sym_identifier, - ACTIONS(3330), 1, - anon_sym_LBRACK, - ACTIONS(3332), 1, - anon_sym_LBRACE, - STATE(3164), 1, - sym_quant_target, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3195), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [153956] = 4, - ACTIONS(3228), 1, + [152144] = 4, + ACTIONS(3244), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 8, + ACTIONS(1419), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -150555,1345 +152381,1236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [153978] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [152166] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3336), 1, anon_sym_else, - ACTIONS(3372), 1, + ACTIONS(3392), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154012] = 10, - ACTIONS(3064), 1, + [152200] = 7, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3344), 1, + anon_sym_LBRACK, + ACTIONS(3346), 1, + anon_sym_LBRACE, + STATE(3193), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3119), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [152228] = 10, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, + anon_sym_as, + ACTIONS(3260), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3394), 1, anon_sym_if, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_else, - ACTIONS(3374), 1, - anon_sym_RBRACE, + ACTIONS(3396), 1, + anon_sym_COMMA, + ACTIONS(3398), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154046] = 7, - ACTIONS(503), 1, + [152262] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3167), 1, + STATE(3177), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [154074] = 7, - ACTIONS(503), 1, + [152290] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3168), 1, + STATE(3201), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [154102] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_else, - ACTIONS(3376), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154136] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [152318] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_else, - ACTIONS(3378), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154170] = 10, - ACTIONS(3064), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3336), 1, anon_sym_else, - ACTIONS(3380), 1, + ACTIONS(3400), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154204] = 7, - ACTIONS(503), 1, + [152352] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3171), 1, + STATE(3202), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [154232] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [152380] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3336), 1, anon_sym_else, - ACTIONS(3382), 1, + ACTIONS(3402), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154266] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [152414] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3336), 1, anon_sym_else, - ACTIONS(3384), 1, + ACTIONS(3404), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154300] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [152448] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3336), 1, anon_sym_else, - ACTIONS(3386), 1, + ACTIONS(3406), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154334] = 7, - ACTIONS(503), 1, - sym_string_start, - ACTIONS(3328), 1, - sym_identifier, - ACTIONS(3330), 1, - anon_sym_LBRACK, - ACTIONS(3332), 1, - anon_sym_LBRACE, - STATE(3172), 1, - sym_quant_target, + [152482] = 8, + ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, - sym_config_expr, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_string, - [154362] = 7, - ACTIONS(503), 1, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(3340), 3, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_for, + [152512] = 7, + ACTIONS(461), 1, sym_string_start, - ACTIONS(3328), 1, + ACTIONS(3342), 1, sym_identifier, - ACTIONS(3330), 1, + ACTIONS(3344), 1, anon_sym_LBRACK, - ACTIONS(3332), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(3175), 1, + STATE(3190), 1, sym_quant_target, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3195), 6, + STATE(3119), 6, sym_config_expr, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, sym_string, - [154390] = 10, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [152540] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3336), 1, anon_sym_else, - ACTIONS(3388), 1, + ACTIONS(3408), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154424] = 9, - ACTIONS(3096), 1, + [152574] = 7, + ACTIONS(461), 1, + sym_string_start, + ACTIONS(3342), 1, + sym_identifier, + ACTIONS(3344), 1, + anon_sym_LBRACK, + ACTIONS(3346), 1, + anon_sym_LBRACE, + STATE(3181), 1, + sym_quant_target, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3119), 6, + sym_config_expr, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_string, + [152602] = 10, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3318), 1, anon_sym_PLUS, + ACTIONS(3336), 1, + anon_sym_else, + ACTIONS(3410), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(3390), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1430), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154456] = 8, - ACTIONS(3064), 1, + [152636] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3166), 1, + anon_sym_if, + ACTIONS(3412), 1, + anon_sym_else, + ACTIONS(3414), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(3346), 3, + [152667] = 9, + ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3112), 1, anon_sym_if, - anon_sym_RBRACE, - anon_sym_for, - [154486] = 10, - ACTIONS(3064), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3342), 1, - anon_sym_else, - ACTIONS(3392), 1, - anon_sym_RBRACE, + ACTIONS(3416), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154520] = 10, - ACTIONS(3064), 1, + [152698] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3342), 1, + ACTIONS(3418), 1, anon_sym_else, - ACTIONS(3394), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154554] = 9, - ACTIONS(3230), 1, - anon_sym_as, - ACTIONS(3232), 1, - anon_sym_if, - ACTIONS(3234), 1, - anon_sym_and, - ACTIONS(3236), 1, - anon_sym_or, - ACTIONS(3238), 1, - anon_sym_PLUS, - ACTIONS(3338), 1, - sym__newline, + [152729] = 6, + ACTIONS(2077), 1, + anon_sym_not, + ACTIONS(2081), 1, + anon_sym_is, + STATE(2131), 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(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154585] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(2079), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2075), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [152754] = 9, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3396), 1, - anon_sym_else, - ACTIONS(3398), 1, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1661), 2, sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154616] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + aux_sym_selector_expression_repeat1, + [152785] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3400), 1, - anon_sym_else, + ACTIONS(3422), 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(1154), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154647] = 9, - ACTIONS(3144), 1, + [152816] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3402), 1, + ACTIONS(3424), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154678] = 9, - ACTIONS(3064), 1, + [152847] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3404), 1, + ACTIONS(3426), 1, + anon_sym_if, + ACTIONS(3428), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154709] = 6, - ACTIONS(3408), 1, + [152878] = 6, + ACTIONS(3430), 1, anon_sym_not, - ACTIONS(3410), 1, + ACTIONS(3432), 1, anon_sym_is, - STATE(1777), 1, + STATE(863), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 2, + ACTIONS(1375), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3406), 5, + ACTIONS(1397), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154734] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, - anon_sym_as, - ACTIONS(3150), 1, - anon_sym_if, - ACTIONS(3398), 1, - anon_sym_PLUS, - ACTIONS(3412), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [154765] = 9, - ACTIONS(3144), 1, + [152903] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, - anon_sym_PLUS, ACTIONS(3414), 1, + anon_sym_PLUS, + ACTIONS(3434), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154796] = 6, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(1224), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [154821] = 6, - ACTIONS(2467), 1, + [152934] = 6, + ACTIONS(3438), 1, anon_sym_not, - ACTIONS(2475), 1, + ACTIONS(3440), 1, anon_sym_is, - STATE(2203), 1, + STATE(1806), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, + ACTIONS(2390), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 5, + ACTIONS(3436), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154846] = 9, - ACTIONS(3230), 1, - anon_sym_as, - ACTIONS(3232), 1, - anon_sym_if, - ACTIONS(3234), 1, + [152959] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3238), 1, + ACTIONS(3164), 1, + anon_sym_as, + ACTIONS(3166), 1, + anon_sym_if, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3366), 1, - sym__newline, + ACTIONS(3442), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154877] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + [152990] = 9, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3312), 1, - anon_sym_COLON, - ACTIONS(3398), 1, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, anon_sym_PLUS, + ACTIONS(3444), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154908] = 6, - ACTIONS(2244), 1, + [153021] = 6, + ACTIONS(2201), 1, anon_sym_not, - ACTIONS(2260), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1546), 1, + STATE(1455), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2236), 5, + ACTIONS(2199), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [154933] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + [153046] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3416), 1, - anon_sym_else, + ACTIONS(3446), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154964] = 9, - ACTIONS(3144), 1, + [153077] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3418), 1, + ACTIONS(3448), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [154995] = 6, - ACTIONS(3420), 1, + [153108] = 6, + ACTIONS(2066), 1, anon_sym_not, - ACTIONS(3422), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(1170), 1, + STATE(2238), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1911), 5, + ACTIONS(1455), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155020] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + [153133] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3424), 1, - anon_sym_else, + ACTIONS(3450), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155051] = 9, - ACTIONS(3216), 1, + [153164] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3218), 1, - anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3426), 1, - anon_sym_RPAREN, + ACTIONS(3452), 1, + anon_sym_if, + ACTIONS(3454), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155082] = 9, - ACTIONS(3064), 1, + [153195] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3428), 1, - anon_sym_RBRACE, + ACTIONS(3456), 1, + anon_sym_then, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155113] = 6, - ACTIONS(2244), 1, - anon_sym_not, - ACTIONS(2260), 1, - anon_sym_is, - STATE(2194), 1, - aux_sym_comparison_operator_repeat1, + [153226] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, + anon_sym_PLUS, + ACTIONS(3458), 1, + anon_sym_if, + ACTIONS(3460), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2258), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2236), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155138] = 6, - ACTIONS(3430), 1, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [153257] = 6, + ACTIONS(3462), 1, anon_sym_not, - ACTIONS(3432), 1, + ACTIONS(3464), 1, anon_sym_is, - STATE(870), 1, + STATE(1222), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 2, + ACTIONS(1915), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1420), 5, + ACTIONS(1919), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155163] = 6, - ACTIONS(2540), 1, - anon_sym_not, - ACTIONS(2544), 1, - anon_sym_is, - STATE(1922), 1, - aux_sym_comparison_operator_repeat1, + [153282] = 9, + ACTIONS(3160), 1, + anon_sym_and, + ACTIONS(3162), 1, + anon_sym_or, + ACTIONS(3164), 1, + anon_sym_as, + ACTIONS(3166), 1, + anon_sym_if, + ACTIONS(3414), 1, + anon_sym_PLUS, + ACTIONS(3466), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2542), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155188] = 6, - ACTIONS(2038), 1, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [153313] = 6, + ACTIONS(2441), 1, anon_sym_not, - ACTIONS(2054), 1, + ACTIONS(2457), 1, anon_sym_is, - STATE(2213), 1, + STATE(2227), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, + ACTIONS(2455), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1312), 5, + ACTIONS(2437), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155213] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [153338] = 9, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3434), 1, - anon_sym_RBRACE, + ACTIONS(3260), 1, + anon_sym_and, + ACTIONS(3262), 1, + anon_sym_or, + ACTIONS(3468), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155244] = 9, - ACTIONS(3064), 1, + [153369] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3436), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3438), 1, - anon_sym_RBRACE, + ACTIONS(3414), 1, + anon_sym_PLUS, + ACTIONS(3470), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155275] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + [153400] = 9, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3316), 1, - anon_sym_else, - ACTIONS(3398), 1, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, anon_sym_PLUS, + ACTIONS(3472), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155306] = 9, - ACTIONS(3064), 1, + [153431] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3440), 1, + ACTIONS(3474), 1, anon_sym_if, - ACTIONS(3442), 1, + ACTIONS(3476), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155337] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [153462] = 9, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3444), 1, - anon_sym_RBRACE, + ACTIONS(3260), 1, + anon_sym_and, + ACTIONS(3262), 1, + anon_sym_or, + ACTIONS(3478), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155368] = 9, - ACTIONS(3144), 1, + [153493] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3446), 1, + ACTIONS(3480), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155399] = 9, - ACTIONS(3096), 1, + [153524] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3098), 1, - anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3448), 1, - anon_sym_RBRACK, + ACTIONS(3482), 1, + anon_sym_if, + ACTIONS(3484), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155430] = 9, - ACTIONS(3216), 1, + [153555] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3450), 1, - anon_sym_RPAREN, + ACTIONS(3486), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155461] = 9, - ACTIONS(3144), 1, + [153586] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3334), 1, + anon_sym_COLON, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3452), 1, - anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155492] = 9, - ACTIONS(3064), 1, + [153617] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3454), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3456), 1, - anon_sym_RBRACE, + ACTIONS(3310), 1, + anon_sym_else, + ACTIONS(3414), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155523] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + [153648] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3398), 1, - anon_sym_PLUS, - ACTIONS(3458), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155554] = 9, - ACTIONS(3064), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3460), 1, - anon_sym_if, - ACTIONS(3462), 1, + ACTIONS(3488), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155585] = 9, - ACTIONS(3144), 1, + [153679] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3464), 1, - anon_sym_else, + ACTIONS(3490), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155616] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [153710] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3466), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155647] = 6, - ACTIONS(2038), 1, - anon_sym_not, - ACTIONS(2054), 1, - anon_sym_is, - STATE(2024), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(3492), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1290), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1312), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [155672] = 9, - ACTIONS(3096), 1, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [153741] = 9, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3240), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3242), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(3468), 1, - anon_sym_RBRACK, + ACTIONS(3494), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155703] = 6, - ACTIONS(2436), 1, + [153772] = 6, + ACTIONS(2201), 1, anon_sym_not, - ACTIONS(2440), 1, + ACTIONS(2207), 1, anon_sym_is, - STATE(1709), 1, + STATE(2214), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2438), 2, + ACTIONS(2205), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 5, + ACTIONS(2199), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [155728] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + [153797] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3150), 1, - anon_sym_if, - ACTIONS(3398), 1, - anon_sym_PLUS, - ACTIONS(3470), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155759] = 9, - ACTIONS(3144), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3148), 1, - anon_sym_as, - ACTIONS(3150), 1, - anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3472), 1, - anon_sym_else, + ACTIONS(3496), 1, + anon_sym_if, + ACTIONS(3498), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155790] = 9, - ACTIONS(3064), 1, + [153828] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3474), 1, - anon_sym_RBRACE, + ACTIONS(3500), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155821] = 9, - ACTIONS(3096), 1, + [153859] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3476), 1, + ACTIONS(3502), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, @@ -151901,21 +153618,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155852] = 9, - ACTIONS(3096), 1, + [153890] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3478), 1, + ACTIONS(3504), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, @@ -151923,175 +153640,150 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155883] = 9, - ACTIONS(3144), 1, + [153921] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3480), 1, + ACTIONS(3506), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [155914] = 9, - ACTIONS(3230), 1, - anon_sym_as, - ACTIONS(3232), 1, - anon_sym_if, - ACTIONS(3234), 1, - anon_sym_and, - ACTIONS(3236), 1, - anon_sym_or, - ACTIONS(3238), 1, - anon_sym_PLUS, - ACTIONS(3482), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155945] = 9, - ACTIONS(3144), 1, + [153952] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3484), 1, + ACTIONS(3508), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [155976] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3486), 1, - anon_sym_RBRACE, + [153983] = 6, + ACTIONS(3438), 1, + anon_sym_not, + ACTIONS(3440), 1, + anon_sym_is, + STATE(2225), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156007] = 9, - ACTIONS(3144), 1, + ACTIONS(2390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3436), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [154008] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3310), 1, - anon_sym_COLON, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, + ACTIONS(3510), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156038] = 9, - ACTIONS(3064), 1, + [154039] = 9, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3234), 1, + anon_sym_if, + ACTIONS(3240), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3242), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(3488), 1, - anon_sym_if, - ACTIONS(3490), 1, - anon_sym_RBRACE, + ACTIONS(3512), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156069] = 9, - ACTIONS(3144), 1, + [154070] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3148), 1, - anon_sym_as, - ACTIONS(3150), 1, - anon_sym_if, - ACTIONS(3342), 1, - anon_sym_else, - ACTIONS(3398), 1, + ACTIONS(3318), 1, anon_sym_PLUS, + ACTIONS(3514), 1, + anon_sym_if, + ACTIONS(3516), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156100] = 9, - ACTIONS(3230), 1, + [154101] = 9, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3234), 1, + ACTIONS(3260), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3238), 1, - anon_sym_PLUS, - ACTIONS(3492), 1, + ACTIONS(3518), 1, sym__newline, ACTIONS(3), 2, sym_comment, @@ -152099,1050 +153791,1110 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156131] = 6, - ACTIONS(3408), 1, + [154132] = 6, + ACTIONS(2077), 1, anon_sym_not, - ACTIONS(3410), 1, + ACTIONS(2081), 1, anon_sym_is, - STATE(2200), 1, + STATE(1232), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2452), 2, + ACTIONS(2079), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3406), 5, + ACTIONS(2075), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [156156] = 9, - ACTIONS(3230), 1, + [154157] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3234), 1, - anon_sym_and, - ACTIONS(3236), 1, - anon_sym_or, - ACTIONS(3238), 1, - anon_sym_PLUS, - ACTIONS(3494), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(43), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1584), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [156187] = 9, - ACTIONS(3064), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3496), 1, - anon_sym_if, - ACTIONS(3498), 1, + ACTIONS(3520), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156218] = 6, - ACTIONS(3420), 1, + [154188] = 6, + ACTIONS(2066), 1, anon_sym_not, - ACTIONS(3422), 1, + ACTIONS(2070), 1, anon_sym_is, - STATE(1053), 1, + STATE(2048), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 2, + ACTIONS(1451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1911), 5, + ACTIONS(1455), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [156243] = 9, - ACTIONS(3064), 1, + [154213] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3500), 1, - anon_sym_RBRACE, + ACTIONS(3522), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156274] = 9, - ACTIONS(3064), 1, + [154244] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3166), 1, + anon_sym_if, + ACTIONS(3282), 1, + anon_sym_COLON, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3502), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [154275] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3504), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, + anon_sym_PLUS, + ACTIONS(3524), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156305] = 9, - ACTIONS(3216), 1, + [154306] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3506), 1, - anon_sym_RPAREN, + ACTIONS(3526), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156336] = 6, - ACTIONS(3508), 1, + [154337] = 6, + ACTIONS(3528), 1, anon_sym_not, - ACTIONS(3510), 1, + ACTIONS(3530), 1, anon_sym_is, - STATE(1104), 1, + STATE(1108), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1334), 2, + ACTIONS(1327), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1356), 5, + ACTIONS(1349), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [156361] = 9, - ACTIONS(3064), 1, + [154362] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3512), 1, + ACTIONS(3532), 1, anon_sym_if, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156392] = 6, - ACTIONS(2101), 1, - anon_sym_not, - ACTIONS(2105), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2103), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2099), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [156417] = 9, - ACTIONS(3230), 1, + [154393] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3232), 1, - anon_sym_if, - ACTIONS(3234), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3238), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3516), 1, - sym__newline, + ACTIONS(3536), 1, + anon_sym_if, + ACTIONS(3538), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156448] = 9, - ACTIONS(3064), 1, + [154424] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3518), 1, - anon_sym_RBRACE, + ACTIONS(3540), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156479] = 9, - ACTIONS(3144), 1, + [154455] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3148), 1, - anon_sym_as, - ACTIONS(3150), 1, - anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3520), 1, - anon_sym_COLON, + ACTIONS(3542), 1, + anon_sym_if, + ACTIONS(3544), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156510] = 9, - ACTIONS(3064), 1, + [154486] = 6, + ACTIONS(2478), 1, + anon_sym_not, + ACTIONS(2482), 1, + anon_sym_is, + STATE(2224), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2480), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2476), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [154511] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3522), 1, - anon_sym_RBRACE, + ACTIONS(3546), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156541] = 9, - ACTIONS(3096), 1, + [154542] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3098), 1, - anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3524), 1, - anon_sym_RBRACK, + ACTIONS(3548), 1, + anon_sym_if, + ACTIONS(3550), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156572] = 9, - ACTIONS(3064), 1, + [154573] = 9, + ACTIONS(3110), 1, + anon_sym_as, + ACTIONS(3112), 1, + anon_sym_if, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3526), 1, - anon_sym_if, - ACTIONS(3528), 1, - anon_sym_RBRACE, + ACTIONS(3552), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156603] = 9, - ACTIONS(3144), 1, + [154604] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3530), 1, + ACTIONS(3554), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156634] = 6, - ACTIONS(3508), 1, - anon_sym_not, - ACTIONS(3510), 1, - anon_sym_is, - STATE(866), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1334), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1356), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [156659] = 9, - ACTIONS(3064), 1, + [154635] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3102), 1, + anon_sym_if, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3532), 1, + ACTIONS(3556), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156690] = 9, - ACTIONS(3064), 1, + [154666] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3534), 1, - anon_sym_RBRACE, + ACTIONS(3558), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156721] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [154697] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3536), 1, + ACTIONS(3560), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156752] = 9, - ACTIONS(3216), 1, - anon_sym_as, - ACTIONS(3218), 1, - anon_sym_if, - ACTIONS(3224), 1, + [154728] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3164), 1, + anon_sym_as, + ACTIONS(3166), 1, + anon_sym_if, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3538), 1, - anon_sym_RPAREN, + ACTIONS(3562), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156783] = 6, - ACTIONS(3430), 1, + [154759] = 6, + ACTIONS(3462), 1, anon_sym_not, - ACTIONS(3432), 1, + ACTIONS(3464), 1, anon_sym_is, - STATE(1089), 1, + STATE(1072), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 2, + ACTIONS(1915), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1420), 5, + ACTIONS(1919), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [156808] = 9, - ACTIONS(3216), 1, + [154784] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3540), 1, - anon_sym_RPAREN, + ACTIONS(3564), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156839] = 9, - ACTIONS(3144), 1, + [154815] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3542), 1, - anon_sym_COLON, + ACTIONS(3566), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156870] = 6, - ACTIONS(2467), 1, + [154846] = 6, + ACTIONS(2478), 1, anon_sym_not, - ACTIONS(2475), 1, + ACTIONS(2482), 1, anon_sym_is, - STATE(1752), 1, + STATE(1804), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 2, + ACTIONS(2480), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 5, + ACTIONS(2476), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [156895] = 9, - ACTIONS(3216), 1, + [154871] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3218), 1, - anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3544), 1, - anon_sym_RPAREN, + ACTIONS(3568), 1, + anon_sym_if, + ACTIONS(3570), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156926] = 6, - ACTIONS(2540), 1, - anon_sym_not, - ACTIONS(2544), 1, - anon_sym_is, - STATE(2209), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2542), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [156951] = 9, - ACTIONS(3064), 1, + [154902] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3546), 1, - anon_sym_RBRACE, + ACTIONS(3572), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [156982] = 9, - ACTIONS(3064), 1, + [154933] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3548), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3550), 1, - anon_sym_RBRACE, + ACTIONS(3336), 1, + anon_sym_else, + ACTIONS(3414), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157013] = 9, - ACTIONS(3064), 1, + [154964] = 6, + ACTIONS(3430), 1, + anon_sym_not, + ACTIONS(3432), 1, + anon_sym_is, + STATE(1122), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1375), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1397), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [154989] = 9, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3234), 1, + anon_sym_if, + ACTIONS(3240), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3242), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(3552), 1, - anon_sym_if, - ACTIONS(3554), 1, - anon_sym_RBRACE, + ACTIONS(3574), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157044] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + [155020] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3120), 1, + anon_sym_and, + ACTIONS(3122), 1, + anon_sym_or, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3556), 1, - anon_sym_else, + ACTIONS(3576), 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(1154), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157075] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + [155051] = 9, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(3558), 1, - anon_sym_else, + ACTIONS(3578), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157106] = 9, - ACTIONS(3064), 1, + [155082] = 6, + ACTIONS(2441), 1, + anon_sym_not, + ACTIONS(2457), 1, + anon_sym_is, + STATE(1835), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2455), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [155107] = 6, + ACTIONS(2589), 1, + anon_sym_not, + ACTIONS(2593), 1, + anon_sym_is, + STATE(2235), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2591), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2587), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [155132] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3560), 1, + ACTIONS(3580), 1, anon_sym_if, - ACTIONS(3562), 1, + ACTIONS(3582), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157137] = 9, - ACTIONS(3096), 1, + [155163] = 9, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3260), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3110), 1, - anon_sym_PLUS, - ACTIONS(3564), 1, - anon_sym_RBRACK, + ACTIONS(3382), 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(1430), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157168] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [155194] = 9, + ACTIONS(3232), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3234), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3240), 1, + anon_sym_and, + ACTIONS(3242), 1, + anon_sym_or, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(3566), 1, - anon_sym_RBRACE, + ACTIONS(3584), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157199] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, + [155225] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3090), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3568), 1, + ACTIONS(3586), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157230] = 9, - ACTIONS(3064), 1, + [155256] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3570), 1, + ACTIONS(3588), 1, anon_sym_if, - ACTIONS(3572), 1, + ACTIONS(3590), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157261] = 9, - ACTIONS(3064), 1, + [155287] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3102), 1, + anon_sym_if, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3574), 1, - anon_sym_if, - ACTIONS(3576), 1, + ACTIONS(3592), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157292] = 9, - ACTIONS(3144), 1, + [155318] = 6, + ACTIONS(2264), 1, + anon_sym_not, + ACTIONS(2272), 1, + anon_sym_is, + STATE(1536), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2270), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2262), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [155343] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3148), 1, - anon_sym_as, - ACTIONS(3150), 1, - anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3578), 1, - anon_sym_then, + ACTIONS(3594), 1, + anon_sym_if, + ACTIONS(3596), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157323] = 9, - ACTIONS(3144), 1, + [155374] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3148), 1, - anon_sym_as, - ACTIONS(3150), 1, - anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3580), 1, - anon_sym_COLON, + ACTIONS(3598), 1, + anon_sym_if, + ACTIONS(3600), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157354] = 9, - ACTIONS(3064), 1, + [155405] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3582), 1, + ACTIONS(3602), 1, anon_sym_if, - ACTIONS(3584), 1, + ACTIONS(3604), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157385] = 9, - ACTIONS(3230), 1, + [155436] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3234), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3238), 1, - anon_sym_PLUS, ACTIONS(3318), 1, - sym__newline, + anon_sym_PLUS, + ACTIONS(3606), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157416] = 9, - ACTIONS(3064), 1, + [155467] = 9, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3234), 1, + anon_sym_if, + ACTIONS(3240), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3242), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(3244), 1, anon_sym_PLUS, - ACTIONS(3586), 1, - anon_sym_if, - ACTIONS(3588), 1, - anon_sym_RBRACE, + ACTIONS(3608), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157447] = 6, - ACTIONS(2436), 1, + [155498] = 6, + ACTIONS(2264), 1, anon_sym_not, - ACTIONS(2440), 1, + ACTIONS(2272), 1, anon_sym_is, - STATE(2206), 1, + STATE(2219), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2438), 2, + ACTIONS(2270), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2434), 5, + ACTIONS(2262), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [157472] = 9, - ACTIONS(3064), 1, + [155523] = 9, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, + anon_sym_as, + ACTIONS(3258), 1, + anon_sym_if, + ACTIONS(3260), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3088), 1, + ACTIONS(3388), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(43), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1578), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [155554] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3590), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3592), 1, + ACTIONS(3104), 1, + anon_sym_and, + ACTIONS(3106), 1, + anon_sym_or, + ACTIONS(3318), 1, + anon_sym_PLUS, + ACTIONS(3610), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157503] = 9, - ACTIONS(3230), 1, + [155585] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3232), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3234), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3238), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3324), 1, - sym__newline, + ACTIONS(3612), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157534] = 9, - ACTIONS(3144), 1, - anon_sym_and, - ACTIONS(3146), 1, - anon_sym_or, - ACTIONS(3148), 1, + [155616] = 9, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3398), 1, - anon_sym_PLUS, - ACTIONS(3594), 1, - anon_sym_else, + ACTIONS(3260), 1, + anon_sym_and, + ACTIONS(3262), 1, + anon_sym_or, + ACTIONS(3614), 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(1154), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157565] = 9, - ACTIONS(3096), 1, + [155647] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3596), 1, + ACTIONS(3616), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, @@ -153150,84 +154902,84 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157596] = 9, - ACTIONS(3144), 1, + [155678] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3146), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3148), 1, + ACTIONS(3164), 1, anon_sym_as, - ACTIONS(3150), 1, + ACTIONS(3166), 1, anon_sym_if, - ACTIONS(3398), 1, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3598), 1, + ACTIONS(3618), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157627] = 9, - ACTIONS(3216), 1, + [155709] = 9, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3260), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3228), 1, - anon_sym_PLUS, - ACTIONS(3600), 1, - anon_sym_RPAREN, + ACTIONS(3620), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157658] = 6, - ACTIONS(2183), 1, + [155740] = 6, + ACTIONS(2589), 1, anon_sym_not, - ACTIONS(2195), 1, + ACTIONS(2593), 1, anon_sym_is, - STATE(1412), 1, + STATE(1875), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2193), 2, + ACTIONS(2591), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2181), 5, + ACTIONS(2587), 5, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - [157683] = 9, - ACTIONS(3096), 1, + [155765] = 9, + ACTIONS(3110), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3112), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3120), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3122), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3124), 1, anon_sym_PLUS, - ACTIONS(3602), 1, + ACTIONS(3622), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, @@ -153235,339 +154987,267 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(525), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157714] = 9, - ACTIONS(3230), 1, - anon_sym_as, - ACTIONS(3232), 1, - anon_sym_if, - ACTIONS(3234), 1, + [155796] = 9, + ACTIONS(3160), 1, anon_sym_and, - ACTIONS(3236), 1, + ACTIONS(3162), 1, anon_sym_or, - ACTIONS(3238), 1, + ACTIONS(3164), 1, + anon_sym_as, + ACTIONS(3166), 1, + anon_sym_if, + ACTIONS(3414), 1, anon_sym_PLUS, - ACTIONS(3604), 1, - sym__newline, + ACTIONS(3624), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157745] = 9, - ACTIONS(3216), 1, + [155827] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3606), 1, - anon_sym_RPAREN, + ACTIONS(3626), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157776] = 9, - ACTIONS(3096), 1, + [155858] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3098), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3106), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3108), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3110), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3608), 1, - anon_sym_RBRACK, + ACTIONS(3628), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157807] = 6, - ACTIONS(2183), 1, - anon_sym_not, - ACTIONS(2195), 1, - anon_sym_is, - STATE(2188), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2193), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2181), 5, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - [157832] = 9, - ACTIONS(3216), 1, + [155889] = 9, + ACTIONS(3100), 1, anon_sym_as, - ACTIONS(3218), 1, + ACTIONS(3102), 1, anon_sym_if, - ACTIONS(3224), 1, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3226), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3228), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3610), 1, - anon_sym_RPAREN, + ACTIONS(3630), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157863] = 9, - ACTIONS(3064), 1, + [155920] = 9, + ACTIONS(3100), 1, + anon_sym_as, + ACTIONS(3104), 1, anon_sym_and, - ACTIONS(3066), 1, + ACTIONS(3106), 1, anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3294), 1, + ACTIONS(3318), 1, anon_sym_PLUS, - ACTIONS(3612), 1, + ACTIONS(3632), 1, + anon_sym_if, + ACTIONS(3634), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(1257), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157894] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3090), 1, - anon_sym_if, - ACTIONS(3294), 1, - anon_sym_PLUS, - ACTIONS(3614), 1, - anon_sym_RBRACE, + [155951] = 6, + ACTIONS(3528), 1, + anon_sym_not, + ACTIONS(3530), 1, + anon_sym_is, + STATE(877), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [157925] = 9, - ACTIONS(3064), 1, - anon_sym_and, - ACTIONS(3066), 1, - anon_sym_or, - ACTIONS(3088), 1, - anon_sym_as, - ACTIONS(3294), 1, + ACTIONS(1327), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1349), 5, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [155976] = 9, + ACTIONS(3254), 1, anon_sym_PLUS, - ACTIONS(3616), 1, + ACTIONS(3256), 1, + anon_sym_as, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3618), 1, - anon_sym_RBRACE, + ACTIONS(3260), 1, + anon_sym_and, + ACTIONS(3262), 1, + anon_sym_or, + ACTIONS(3398), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157956] = 8, - ACTIONS(3620), 1, + [156007] = 9, + ACTIONS(3254), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, anon_sym_as, - ACTIONS(3622), 1, + ACTIONS(3258), 1, anon_sym_if, - ACTIONS(3624), 1, + ACTIONS(3260), 1, anon_sym_and, - ACTIONS(3626), 1, + ACTIONS(3262), 1, anon_sym_or, - ACTIONS(3628), 1, - anon_sym_PLUS, + ACTIONS(3312), 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(1154), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [157984] = 4, - STATE(2027), 1, - aux_sym_dotted_name_repeat1, + [156038] = 4, + ACTIONS(3636), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2782), 2, + STATE(1567), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1419), 6, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1459), 6, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [158004] = 8, - ACTIONS(906), 1, - sym_string_start, - ACTIONS(1611), 1, - anon_sym_LPAREN, - ACTIONS(3630), 1, - sym_identifier, - ACTIONS(3632), 1, - sym_integer, - ACTIONS(3634), 1, - sym_float, - STATE(2815), 1, - sym_test, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2803), 3, - sym_dotted_name, - sym_paren_expression, - sym_string, - [158032] = 8, - ACTIONS(3620), 1, anon_sym_as, - ACTIONS(3622), 1, anon_sym_if, - ACTIONS(3624), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3628), 1, - anon_sym_PLUS, + anon_sym_or, + [156058] = 8, ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3638), 1, + anon_sym_as, + ACTIONS(3640), 1, + anon_sym_if, + ACTIONS(3642), 1, + anon_sym_and, + ACTIONS(3644), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(778), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158060] = 8, - ACTIONS(3620), 1, - anon_sym_as, - ACTIONS(3622), 1, - anon_sym_if, - ACTIONS(3624), 1, - anon_sym_and, - ACTIONS(3628), 1, + [156086] = 4, + ACTIONS(3636), 1, anon_sym_PLUS, - ACTIONS(3638), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(525), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1430), 2, + STATE(1451), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158088] = 8, - ACTIONS(3620), 1, + ACTIONS(1419), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(3622), 1, anon_sym_if, - ACTIONS(3624), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3628), 1, - anon_sym_PLUS, - ACTIONS(3640), 1, anon_sym_or, + [156106] = 4, + ACTIONS(3636), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1477), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(336), 2, + STATE(1661), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158116] = 8, - ACTIONS(3620), 1, + ACTIONS(1419), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(3622), 1, anon_sym_if, - ACTIONS(3624), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3628), 1, - anon_sym_PLUS, - ACTIONS(3642), 1, anon_sym_or, + [156126] = 4, + ACTIONS(3636), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1501), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158144] = 8, - ACTIONS(3620), 1, + ACTIONS(1415), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(3622), 1, anon_sym_if, - ACTIONS(3624), 1, + anon_sym_QMARK_DOT, anon_sym_and, - ACTIONS(3628), 1, - anon_sym_PLUS, - ACTIONS(3644), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1633), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [158172] = 8, + [156146] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, @@ -153578,108 +155258,76 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(3650), 1, sym_float, - STATE(2974), 1, + STATE(3088), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3125), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [158200] = 4, - ACTIONS(3654), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2515), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3652), 6, - anon_sym_LBRACK, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - [158220] = 8, - ACTIONS(3620), 1, + [156174] = 8, + ACTIONS(3638), 1, anon_sym_as, - ACTIONS(3622), 1, + ACTIONS(3640), 1, anon_sym_if, - ACTIONS(3624), 1, + ACTIONS(3642), 1, anon_sym_and, - ACTIONS(3626), 1, + ACTIONS(3652), 1, anon_sym_or, - ACTIONS(3657), 1, + ACTIONS(3654), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [158248] = 4, - ACTIONS(3628), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(336), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [158268] = 8, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(55), 1, + [156202] = 8, + ACTIONS(902), 1, sym_string_start, - ACTIONS(3646), 1, + ACTIONS(1271), 1, + anon_sym_LPAREN, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3648), 1, + ACTIONS(3658), 1, sym_integer, - ACTIONS(3650), 1, + ACTIONS(3660), 1, sym_float, - STATE(3036), 1, + STATE(2809), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3125), 3, + STATE(2854), 3, sym_dotted_name, sym_paren_expression, sym_string, - [158296] = 8, - ACTIONS(3620), 1, + [156230] = 8, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3638), 1, anon_sym_as, - ACTIONS(3622), 1, + ACTIONS(3640), 1, anon_sym_if, - ACTIONS(3624), 1, + ACTIONS(3642), 1, anon_sym_and, - ACTIONS(3626), 1, + ACTIONS(3662), 1, anon_sym_or, - ACTIONS(3659), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1309), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1028), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158324] = 8, + [156258] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, @@ -153690,84 +155338,56 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(3650), 1, sym_float, - STATE(3032), 1, + STATE(3094), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3125), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [158352] = 4, - ACTIONS(3628), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1444), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [158372] = 4, - ACTIONS(3628), 1, - anon_sym_PLUS, + [156286] = 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(3017), 1, + sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1030), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [158392] = 4, - ACTIONS(3628), 1, + STATE(3064), 3, + sym_dotted_name, + sym_paren_expression, + sym_string, + [156314] = 8, + ACTIONS(3636), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1440), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [158412] = 8, - ACTIONS(3620), 1, + ACTIONS(3638), 1, anon_sym_as, - ACTIONS(3622), 1, + ACTIONS(3640), 1, anon_sym_if, - ACTIONS(3624), 1, + ACTIONS(3642), 1, anon_sym_and, - ACTIONS(3628), 1, - anon_sym_PLUS, - ACTIONS(3661), 1, + ACTIONS(3664), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1515), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1204), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158440] = 8, + [156342] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, @@ -153778,88 +155398,123 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(3650), 1, sym_float, - STATE(3042), 1, + STATE(3012), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3125), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [158468] = 8, - ACTIONS(3620), 1, - anon_sym_as, - ACTIONS(3622), 1, - anon_sym_if, - ACTIONS(3624), 1, - anon_sym_and, - ACTIONS(3628), 1, - anon_sym_PLUS, - ACTIONS(3663), 1, - anon_sym_or, + [156370] = 4, + ACTIONS(3668), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - STATE(1154), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - [158496] = 8, - ACTIONS(3620), 1, + STATE(2545), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3666), 6, + anon_sym_LBRACK, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + [156390] = 8, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3638), 1, anon_sym_as, - ACTIONS(3622), 1, + ACTIONS(3640), 1, anon_sym_if, - ACTIONS(3624), 1, + ACTIONS(3642), 1, anon_sym_and, - ACTIONS(3628), 1, - anon_sym_PLUS, - ACTIONS(3665), 1, + ACTIONS(3652), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(43), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1584), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158524] = 4, - ACTIONS(3628), 1, + [156418] = 4, + ACTIONS(3636), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1154), 2, + STATE(819), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 6, + ACTIONS(1419), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [158544] = 4, - ACTIONS(3628), 1, - anon_sym_PLUS, + [156438] = 4, + STATE(2053), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1430), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 6, + ACTIONS(2798), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1471), 6, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [156458] = 8, + ACTIONS(3638), 1, anon_sym_as, + ACTIONS(3640), 1, anon_sym_if, + ACTIONS(3642), 1, + anon_sym_and, + ACTIONS(3652), 1, + anon_sym_or, + ACTIONS(3671), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(559), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156486] = 7, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3642), 1, anon_sym_and, + ACTIONS(3652), 1, anon_sym_or, - [158564] = 8, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1301), 2, + anon_sym_as, + anon_sym_if, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156512] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, @@ -153870,16 +155525,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(3650), 1, sym_float, - STATE(2947), 1, + STATE(3087), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3125), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [158592] = 8, + [156540] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, @@ -153890,158 +155545,199 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(3650), 1, sym_float, - STATE(3045), 1, + STATE(3016), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3125), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [158620] = 4, - ACTIONS(3628), 1, + [156568] = 8, + ACTIONS(3636), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1204), 2, - sym_select_suffix, - aux_sym_selector_expression_repeat1, - ACTIONS(1424), 6, - anon_sym_DOT, + ACTIONS(3638), 1, anon_sym_as, + ACTIONS(3640), 1, anon_sym_if, - anon_sym_QMARK_DOT, - anon_sym_and, - anon_sym_or, - [158640] = 7, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(3667), 1, - anon_sym_LPAREN, - STATE(1833), 1, - sym_dict_expr, - STATE(2223), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3642), 1, + anon_sym_and, + ACTIONS(3652), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, + ACTIONS(559), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1459), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [158666] = 4, - ACTIONS(3628), 1, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156596] = 4, + ACTIONS(3636), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(345), 2, + STATE(1028), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 6, + ACTIONS(1419), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [158686] = 8, - ACTIONS(3620), 1, + [156616] = 8, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3638), 1, anon_sym_as, - ACTIONS(3622), 1, + ACTIONS(3640), 1, anon_sym_if, - ACTIONS(3624), 1, + ACTIONS(3642), 1, anon_sym_and, - ACTIONS(3626), 1, + ACTIONS(3673), 1, anon_sym_or, - ACTIONS(3628), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(1277), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1154), 2, + STATE(1567), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158714] = 7, - ACTIONS(3624), 1, + [156644] = 8, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3638), 1, + anon_sym_as, + ACTIONS(3640), 1, + anon_sym_if, + ACTIONS(3642), 1, anon_sym_and, - ACTIONS(3626), 1, + ACTIONS(3675), 1, anon_sym_or, - ACTIONS(3628), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(557), 2, + ACTIONS(43), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1485), 2, - anon_sym_as, - anon_sym_if, - STATE(1154), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158740] = 4, - ACTIONS(3628), 1, + [156672] = 4, + ACTIONS(3636), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1603), 2, + STATE(1578), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 6, + ACTIONS(1419), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [158760] = 8, - ACTIONS(3620), 1, + [156692] = 8, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3638), 1, anon_sym_as, - ACTIONS(3622), 1, + ACTIONS(3640), 1, anon_sym_if, - ACTIONS(3624), 1, + ACTIONS(3642), 1, anon_sym_and, - ACTIONS(3628), 1, + ACTIONS(3677), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(525), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1451), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156720] = 8, + ACTIONS(3636), 1, anon_sym_PLUS, - ACTIONS(3669), 1, + ACTIONS(3638), 1, + anon_sym_as, + ACTIONS(3640), 1, + anon_sym_if, + ACTIONS(3642), 1, + anon_sym_and, + ACTIONS(3679), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1233), 2, + ACTIONS(1229), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(345), 2, + STATE(606), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158788] = 4, - ACTIONS(3628), 1, + [156748] = 7, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(3681), 1, + anon_sym_LPAREN, + STATE(1855), 1, + sym_dict_expr, + STATE(2248), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3088), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1471), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [156774] = 4, + ACTIONS(3636), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1501), 2, + STATE(1166), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 6, + ACTIONS(1411), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [158808] = 8, + [156794] = 4, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(606), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1419), 6, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [156814] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, @@ -154052,52 +155748,108 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(3650), 1, sym_float, - STATE(3099), 1, + STATE(3020), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3125), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [158836] = 8, - ACTIONS(3620), 1, + [156842] = 8, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3638), 1, anon_sym_as, - ACTIONS(3622), 1, + ACTIONS(3640), 1, anon_sym_if, - ACTIONS(3624), 1, + ACTIONS(3642), 1, anon_sym_and, - ACTIONS(3628), 1, + ACTIONS(3683), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(559), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156870] = 8, + ACTIONS(3636), 1, anon_sym_PLUS, - ACTIONS(3671), 1, + ACTIONS(3638), 1, + anon_sym_as, + ACTIONS(3640), 1, + anon_sym_if, + ACTIONS(3642), 1, + anon_sym_and, + ACTIONS(3685), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(1243), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - STATE(1603), 2, + STATE(819), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - [158864] = 4, - ACTIONS(3628), 1, + [156898] = 4, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1166), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + ACTIONS(1419), 6, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_QMARK_DOT, + anon_sym_and, + anon_sym_or, + [156918] = 8, + ACTIONS(3636), 1, + anon_sym_PLUS, + ACTIONS(3638), 1, + anon_sym_as, + ACTIONS(3640), 1, + anon_sym_if, + ACTIONS(3642), 1, + anon_sym_and, + ACTIONS(3687), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1257), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1198), 2, + sym_select_suffix, + aux_sym_selector_expression_repeat1, + [156946] = 4, + ACTIONS(3636), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1584), 2, + STATE(1198), 2, sym_select_suffix, aux_sym_selector_expression_repeat1, - ACTIONS(1424), 6, + ACTIONS(1419), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_QMARK_DOT, anon_sym_and, anon_sym_or, - [158884] = 8, + [156966] = 8, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(55), 1, @@ -154108,4025 +155860,4009 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(3650), 1, sym_float, - STATE(3021), 1, + STATE(3085), 1, sym_test, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3125), 3, + STATE(3064), 3, sym_dotted_name, sym_paren_expression, sym_string, - [158912] = 6, - ACTIONS(3677), 1, + [156994] = 5, + ACTIONS(543), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3689), 1, + sym_identifier, + STATE(3204), 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, + [157015] = 6, + ACTIONS(3695), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2563), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [158935] = 6, - ACTIONS(3679), 1, + [157038] = 6, + ACTIONS(3697), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2571), 2, sym_string_content, aux_sym_raw_string_repeat1, - [158958] = 6, - ACTIONS(3681), 1, + [157061] = 6, + ACTIONS(3699), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [158981] = 6, - ACTIONS(3683), 1, + [157084] = 6, + ACTIONS(3701), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2575), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159004] = 5, - ACTIONS(513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3685), 1, - sym_identifier, - STATE(3150), 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, - [159025] = 6, - ACTIONS(3687), 1, + [157107] = 6, + ACTIONS(3703), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2547), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159048] = 6, - ACTIONS(3689), 1, + [157130] = 6, + ACTIONS(3705), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159071] = 6, - ACTIONS(3691), 1, + [157153] = 6, + ACTIONS(3707), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2573), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159094] = 6, - ACTIONS(3693), 1, + [157176] = 5, + ACTIONS(513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3709), 1, + sym_identifier, + STATE(3239), 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, + [157197] = 6, + ACTIONS(3711), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2556), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159117] = 6, - ACTIONS(3695), 1, + [157220] = 6, + ACTIONS(3719), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3713), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3716), 2, sym__not_escape_sequence, sym__string_content, - STATE(2546), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159140] = 6, - ACTIONS(3697), 1, + [157243] = 6, + ACTIONS(3721), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2561), 2, + STATE(2583), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159163] = 6, - ACTIONS(3699), 1, + [157266] = 6, + ACTIONS(3723), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2545), 2, + STATE(2588), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159186] = 6, - ACTIONS(3701), 1, + [157289] = 6, + ACTIONS(3725), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159209] = 6, - ACTIONS(3703), 1, + [157312] = 6, + ACTIONS(3727), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2551), 2, + STATE(2576), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159232] = 6, - ACTIONS(3705), 1, + [157335] = 6, + ACTIONS(3729), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2587), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159255] = 6, - ACTIONS(3707), 1, + [157358] = 6, + ACTIONS(3731), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2558), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159278] = 5, - ACTIONS(543), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3709), 1, - sym_identifier, - STATE(3178), 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, - [159299] = 6, - ACTIONS(3711), 1, + [157381] = 6, + ACTIONS(3733), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159322] = 6, - ACTIONS(3719), 1, + [157404] = 6, + ACTIONS(3735), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3713), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3716), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2580), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159345] = 6, - ACTIONS(3721), 1, + [157427] = 6, + ACTIONS(3737), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2562), 2, + STATE(2586), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159368] = 6, - ACTIONS(3723), 1, + [157450] = 6, + ACTIONS(3739), 1, sym_string_end, - STATE(2601), 1, + STATE(2642), 1, aux_sym_string_content_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3691), 2, sym_escape_interpolation, sym_escape_sequence, - ACTIONS(3675), 2, + ACTIONS(3693), 2, sym__not_escape_sequence, sym__string_content, - STATE(2550), 2, + STATE(2579), 2, sym_string_content, aux_sym_raw_string_repeat1, - [159391] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3725), 7, - anon_sym_LBRACK, - anon_sym_schema, - anon_sym_mixin, - anon_sym_protocol, - anon_sym_rule, - anon_sym_check, - anon_sym_AT, - [159405] = 4, - ACTIONS(3727), 1, + [157473] = 4, + ACTIONS(3741), 1, anon_sym_DOT_DOT_DOT, - STATE(3185), 1, + STATE(3153), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 5, + ACTIONS(3743), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [159423] = 5, - ACTIONS(3731), 1, - sym_identifier, - STATE(2826), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3733), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - STATE(2663), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159443] = 5, - ACTIONS(3731), 1, - sym_identifier, - STATE(2826), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3735), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - STATE(2663), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159463] = 4, - ACTIONS(3737), 1, + [157491] = 4, + ACTIONS(3745), 1, anon_sym_DOT_DOT_DOT, - STATE(3031), 1, + STATE(3211), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 5, + ACTIONS(3743), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [159481] = 8, - ACTIONS(3739), 1, + [157509] = 5, + ACTIONS(3747), 1, sym_identifier, - ACTIONS(3741), 1, - anon_sym_DOT, - STATE(2711), 1, - sym_import_prefix, - STATE(2733), 1, - aux_sym_import_prefix_repeat1, - STATE(2919), 1, - sym_dotted_name, - STATE(2941), 1, - sym_aliased_import, - STATE(2942), 1, - sym__import_list, + STATE(2794), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159507] = 4, - STATE(2223), 1, + ACTIONS(3749), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + STATE(2704), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [157529] = 4, + STATE(2248), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, + ACTIONS(3088), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1459), 4, + ACTIONS(1471), 4, sym__newline, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, - [159525] = 7, - ACTIONS(3743), 1, - anon_sym_COMMA, - ACTIONS(3745), 1, - anon_sym_RBRACE, - ACTIONS(3747), 1, - anon_sym_for, - STATE(2573), 1, - sym_for_in_clause, - STATE(2792), 1, - aux_sym_dictionary_repeat1, - STATE(3126), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [159548] = 5, - ACTIONS(3747), 1, - anon_sym_for, - ACTIONS(3749), 1, - anon_sym_if, + [157547] = 8, ACTIONS(3751), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2603), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [159567] = 7, - ACTIONS(3747), 1, - anon_sym_for, + sym_identifier, ACTIONS(3753), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - anon_sym_RBRACE, - STATE(2573), 1, - sym_for_in_clause, - STATE(2763), 1, - aux_sym_dictionary_repeat1, - STATE(3012), 1, - sym__comprehension_clauses, + anon_sym_DOT, + STATE(2740), 1, + sym_import_prefix, + STATE(2742), 1, + aux_sym_import_prefix_repeat1, + STATE(2949), 1, + sym_dotted_name, + STATE(3244), 1, + sym_aliased_import, + STATE(3245), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159590] = 3, - STATE(3181), 1, - sym_basic_type, + [157573] = 5, + ACTIONS(3747), 1, + sym_identifier, + STATE(2794), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [159605] = 7, - ACTIONS(3747), 1, - anon_sym_for, - ACTIONS(3757), 1, - anon_sym_COMMA, - ACTIONS(3759), 1, - anon_sym_RBRACE, - STATE(2573), 1, - sym_for_in_clause, - STATE(2727), 1, - aux_sym_dictionary_repeat1, - STATE(3198), 1, - sym__comprehension_clauses, + ACTIONS(3755), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + STATE(2704), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [157593] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159628] = 4, - ACTIONS(184), 1, + ACTIONS(3757), 7, anon_sym_LBRACK, - ACTIONS(3761), 1, + anon_sym_schema, + anon_sym_mixin, + anon_sym_protocol, + anon_sym_rule, + anon_sym_check, + anon_sym_AT, + [157607] = 4, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1822), 4, + STATE(1081), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [159645] = 4, - ACTIONS(3763), 1, - anon_sym_PIPE, - STATE(2578), 1, + [157624] = 3, + STATE(2646), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 4, + ACTIONS(1443), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, - [159662] = 4, - STATE(2615), 1, - aux_sym_dotted_name_repeat1, + anon_sym_PIPE, + [157639] = 5, + ACTIONS(3763), 1, + anon_sym_COLON, + ACTIONS(3765), 1, + anon_sym_LBRACK, + ACTIONS(3767), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3766), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1459), 3, + ACTIONS(3761), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [159679] = 5, - ACTIONS(3731), 1, - sym_identifier, - STATE(2667), 1, - sym_parameter, - STATE(2911), 1, - sym__parameters, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [157658] = 5, + ACTIONS(3769), 1, + anon_sym_if, + ACTIONS(3771), 1, + anon_sym_RBRACE, + ACTIONS(3773), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159698] = 3, - STATE(3001), 1, - sym_basic_type, + STATE(2606), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [157677] = 5, + ACTIONS(3775), 1, + anon_sym_if, + ACTIONS(3778), 1, + anon_sym_RBRACK, + ACTIONS(3780), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [159713] = 7, - ACTIONS(3747), 1, - anon_sym_for, - ACTIONS(3768), 1, - anon_sym_COMMA, - ACTIONS(3770), 1, - anon_sym_RBRACE, - STATE(2573), 1, + STATE(2602), 3, sym_for_in_clause, - STATE(2787), 1, - aux_sym_dictionary_repeat1, - STATE(3113), 1, - sym__comprehension_clauses, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [157696] = 5, + ACTIONS(3747), 1, + sym_identifier, + STATE(2691), 1, + sym_parameter, + STATE(2917), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159736] = 5, - ACTIONS(3731), 1, + STATE(2704), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [157715] = 5, + ACTIONS(3747), 1, sym_identifier, - STATE(2667), 1, + STATE(2691), 1, sym_parameter, - STATE(2910), 1, + STATE(2933), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, + STATE(2704), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [159755] = 7, - ACTIONS(3747), 1, - anon_sym_for, - ACTIONS(3772), 1, + [157734] = 4, + STATE(2643), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3783), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1471), 3, anon_sym_COMMA, - ACTIONS(3774), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + [157751] = 5, + ACTIONS(3778), 1, anon_sym_RBRACE, - STATE(2573), 1, - sym_for_in_clause, - STATE(2712), 1, - aux_sym_dictionary_repeat1, - STATE(2954), 1, - sym__comprehension_clauses, + ACTIONS(3785), 1, + anon_sym_if, + ACTIONS(3788), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159778] = 4, - ACTIONS(1629), 1, - anon_sym_LBRACK, - ACTIONS(3776), 1, - anon_sym_LBRACE, + STATE(2606), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [157770] = 5, + ACTIONS(3747), 1, + sym_identifier, + STATE(2691), 1, + sym_parameter, + STATE(2930), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1114), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [159795] = 3, - STATE(2578), 1, + STATE(2704), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [157789] = 3, + STATE(2599), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 5, + ACTIONS(1519), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [159810] = 3, - STATE(2586), 1, + [157804] = 7, + ACTIONS(3773), 1, + anon_sym_for, + ACTIONS(3791), 1, + anon_sym_COMMA, + ACTIONS(3793), 1, + anon_sym_RBRACE, + STATE(2631), 1, + sym_for_in_clause, + STATE(2816), 1, + aux_sym_dictionary_repeat1, + STATE(3131), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [157827] = 3, + STATE(2599), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 5, + ACTIONS(1503), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [159825] = 5, - ACTIONS(3731), 1, + [157842] = 5, + ACTIONS(3747), 1, sym_identifier, - STATE(2667), 1, + STATE(2691), 1, sym_parameter, - STATE(2906), 1, + STATE(2936), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, + STATE(2704), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [159844] = 3, - STATE(2586), 1, + [157861] = 3, + STATE(2599), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 5, + ACTIONS(1552), 5, anon_sym_COMMA, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_LBRACE, anon_sym_PIPE, - [159859] = 3, - STATE(2586), 1, - aux_sym_union_type_repeat1, + [157876] = 7, + ACTIONS(3773), 1, + anon_sym_for, + ACTIONS(3795), 1, + anon_sym_COMMA, + ACTIONS(3797), 1, + anon_sym_RBRACE, + STATE(2631), 1, + sym_for_in_clause, + STATE(2796), 1, + aux_sym_dictionary_repeat1, + STATE(3026), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 5, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [159874] = 5, - ACTIONS(3731), 1, - sym_identifier, - STATE(2667), 1, - sym_parameter, - STATE(2905), 1, - sym__parameters, + [157899] = 3, + STATE(3214), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [159893] = 7, - ACTIONS(3747), 1, + ACTIONS(3743), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [157914] = 7, + ACTIONS(3773), 1, anon_sym_for, - ACTIONS(3778), 1, + ACTIONS(3799), 1, anon_sym_COMMA, - ACTIONS(3780), 1, + ACTIONS(3801), 1, anon_sym_RBRACE, - STATE(2573), 1, + STATE(2631), 1, sym_for_in_clause, - STATE(2754), 1, + STATE(2879), 1, aux_sym_dictionary_repeat1, - STATE(2991), 1, + STATE(3038), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159916] = 4, - ACTIONS(511), 1, - anon_sym_LBRACK, - ACTIONS(3782), 1, - anon_sym_LBRACE, + [157937] = 3, + STATE(2599), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1687), 4, - sym_list, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - [159933] = 4, - ACTIONS(1613), 1, + ACTIONS(1544), 5, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_PIPE, + [157952] = 4, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(3784), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1901), 4, + STATE(1851), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [159950] = 3, - STATE(2586), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, + [157969] = 5, + ACTIONS(3811), 1, + sym_string_end, + STATE(2618), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1241), 5, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACE, - anon_sym_PIPE, - [159965] = 4, - ACTIONS(766), 1, + ACTIONS(3805), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(3808), 2, + sym__not_escape_sequence, + sym__string_content, + [157988] = 4, + ACTIONS(1253), 1, anon_sym_LBRACK, - ACTIONS(3786), 1, + ACTIONS(3813), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1954), 4, + STATE(1348), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [159982] = 5, - ACTIONS(3731), 1, + [158005] = 5, + ACTIONS(3747), 1, sym_identifier, - STATE(2667), 1, + STATE(2691), 1, sym_parameter, - STATE(2904), 1, + STATE(2929), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, + STATE(2704), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [160001] = 5, - ACTIONS(3731), 1, - sym_identifier, - STATE(2667), 1, - sym_parameter, - STATE(2903), 1, - sym__parameters, + [158024] = 3, + STATE(3207), 1, + sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [160020] = 5, - ACTIONS(3731), 1, - sym_identifier, - STATE(2667), 1, - sym_parameter, - STATE(2902), 1, - sym__parameters, - ACTIONS(3), 2, + ACTIONS(3743), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [158039] = 5, + ACTIONS(1461), 1, + anon_sym_LF, + STATE(1488), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [160039] = 5, - ACTIONS(3788), 1, + ACTIONS(1459), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3815), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [158058] = 5, + ACTIONS(3118), 1, + anon_sym_for, + ACTIONS(3817), 1, anon_sym_if, - ACTIONS(3791), 1, + ACTIONS(3819), 1, anon_sym_RBRACK, - ACTIONS(3793), 1, - anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2600), 3, + STATE(2645), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [160058] = 5, - ACTIONS(3800), 1, - sym_string_end, - STATE(2604), 1, - aux_sym_string_content_repeat1, + [158077] = 7, + ACTIONS(3773), 1, + anon_sym_for, + ACTIONS(3821), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_RBRACE, + STATE(2631), 1, + sym_for_in_clause, + STATE(2848), 1, + aux_sym_dictionary_repeat1, + STATE(3096), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [158100] = 5, + ACTIONS(1471), 1, + anon_sym_LF, + STATE(2622), 1, + aux_sym_dotted_name_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3796), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3798), 2, - sym__not_escape_sequence, - sym__string_content, - [160077] = 4, - ACTIONS(549), 1, + ACTIONS(1469), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3815), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [158119] = 4, + ACTIONS(511), 1, anon_sym_LBRACK, - ACTIONS(3802), 1, + ACTIONS(3825), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1216), 4, + STATE(1819), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [160094] = 5, - ACTIONS(3747), 1, + [158136] = 7, + ACTIONS(3773), 1, anon_sym_for, - ACTIONS(3749), 1, - anon_sym_if, - ACTIONS(3804), 1, + ACTIONS(3827), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2607), 3, + STATE(2631), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [160113] = 5, - ACTIONS(3812), 1, - sym_string_end, - STATE(2604), 1, - aux_sym_string_content_repeat1, - ACTIONS(5), 2, + STATE(2776), 1, + aux_sym_dictionary_repeat1, + STATE(2995), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 2, - sym_escape_interpolation, - sym_escape_sequence, - ACTIONS(3809), 2, - sym__not_escape_sequence, - sym__string_content, - [160132] = 5, - ACTIONS(3731), 1, + [158159] = 5, + ACTIONS(3747), 1, sym_identifier, - STATE(2667), 1, + STATE(2691), 1, sym_parameter, - STATE(2892), 1, + STATE(2932), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, + STATE(2704), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [160151] = 5, - ACTIONS(3816), 1, - anon_sym_COLON, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, - anon_sym_EQ, + [158178] = 7, + ACTIONS(3773), 1, + anon_sym_for, + ACTIONS(3831), 1, + anon_sym_COMMA, + ACTIONS(3833), 1, + anon_sym_RBRACE, + STATE(2631), 1, + sym_for_in_clause, + STATE(2730), 1, + aux_sym_dictionary_repeat1, + STATE(2969), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3814), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, + [158201] = 4, + ACTIONS(551), 1, + anon_sym_LBRACK, + ACTIONS(3835), 1, anon_sym_LBRACE, - [160170] = 5, - ACTIONS(3791), 1, - anon_sym_RBRACE, - ACTIONS(3822), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1269), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [158218] = 5, + ACTIONS(3769), 1, anon_sym_if, - ACTIONS(3825), 1, + ACTIONS(3773), 1, anon_sym_for, + ACTIONS(3819), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2607), 3, + STATE(2601), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [160189] = 3, - STATE(3186), 1, - sym_basic_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3729), 5, - anon_sym_any, - anon_sym_str, - anon_sym_int, - anon_sym_float, - anon_sym_bool, - [160204] = 7, - ACTIONS(3747), 1, + [158237] = 7, + ACTIONS(3773), 1, anon_sym_for, - ACTIONS(3828), 1, + ACTIONS(3837), 1, anon_sym_COMMA, - ACTIONS(3830), 1, + ACTIONS(3839), 1, anon_sym_RBRACE, - STATE(2573), 1, + STATE(2631), 1, sym_for_in_clause, - STATE(2780), 1, + STATE(2783), 1, aux_sym_dictionary_repeat1, - STATE(3129), 1, + STATE(3168), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160227] = 7, + [158260] = 5, ACTIONS(3747), 1, - anon_sym_for, - ACTIONS(3832), 1, - anon_sym_COMMA, - ACTIONS(3834), 1, - anon_sym_RBRACE, - STATE(2573), 1, - sym_for_in_clause, - STATE(2841), 1, - aux_sym_dictionary_repeat1, - STATE(3044), 1, - sym__comprehension_clauses, + sym_identifier, + STATE(2691), 1, + sym_parameter, + STATE(2937), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160250] = 4, - ACTIONS(1511), 1, + STATE(2704), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [158279] = 4, + ACTIONS(1225), 1, anon_sym_LBRACK, - ACTIONS(3836), 1, + ACTIONS(3841), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1320), 4, + STATE(990), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [160267] = 5, - ACTIONS(3104), 1, - anon_sym_for, - ACTIONS(3751), 1, - anon_sym_RBRACK, - ACTIONS(3838), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2620), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [160286] = 5, - ACTIONS(3731), 1, + [158296] = 5, + ACTIONS(3747), 1, sym_identifier, - STATE(2667), 1, + STATE(2691), 1, sym_parameter, - STATE(2915), 1, + STATE(2946), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, + STATE(2704), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [160305] = 7, - ACTIONS(3747), 1, + [158315] = 7, + ACTIONS(3773), 1, anon_sym_for, - ACTIONS(3840), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - ACTIONS(3842), 1, + ACTIONS(3845), 1, anon_sym_RBRACE, - STATE(2573), 1, + STATE(2631), 1, sym_for_in_clause, - STATE(2743), 1, + STATE(2886), 1, aux_sym_dictionary_repeat1, - STATE(2958), 1, + STATE(3066), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160328] = 4, - STATE(1621), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3766), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1467), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [160345] = 4, - ACTIONS(1229), 1, + [158338] = 4, + ACTIONS(772), 1, anon_sym_LBRACK, - ACTIONS(3844), 1, + ACTIONS(3847), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(955), 4, + STATE(2017), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [160362] = 5, - ACTIONS(1467), 1, - anon_sym_LF, - STATE(1468), 1, + [158355] = 7, + ACTIONS(3773), 1, + anon_sym_for, + ACTIONS(3849), 1, + anon_sym_COMMA, + ACTIONS(3851), 1, + anon_sym_RBRACE, + STATE(2631), 1, + sym_for_in_clause, + STATE(2774), 1, + aux_sym_dictionary_repeat1, + STATE(3192), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [158378] = 3, + STATE(3212), 1, + sym_basic_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3743), 5, + anon_sym_any, + anon_sym_str, + anon_sym_int, + anon_sym_float, + anon_sym_bool, + [158393] = 4, + STATE(2053), 1, aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1469), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3846), 2, + ACTIONS(2798), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [160381] = 5, - ACTIONS(3850), 1, + ACTIONS(1471), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [158410] = 5, + ACTIONS(3855), 1, anon_sym_EQ, - ACTIONS(3852), 1, + ACTIONS(3857), 1, anon_sym_PIPE, - STATE(2586), 1, + STATE(2599), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3848), 3, + ACTIONS(3853), 3, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LBRACE, - [160400] = 4, - STATE(2027), 1, + [158429] = 5, + ACTIONS(3863), 1, + sym_string_end, + STATE(2618), 1, + aux_sym_string_content_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3859), 2, + sym_escape_interpolation, + sym_escape_sequence, + ACTIONS(3861), 2, + sym__not_escape_sequence, + sym__string_content, + [158448] = 4, + STATE(1637), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2782), 2, + ACTIONS(3783), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1459), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [160417] = 5, - ACTIONS(3104), 1, + ACTIONS(1461), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [158465] = 4, + ACTIONS(1239), 1, + anon_sym_LBRACK, + ACTIONS(3865), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(971), 4, + sym_list, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + [158482] = 5, + ACTIONS(3118), 1, anon_sym_for, - ACTIONS(3804), 1, + ACTIONS(3771), 1, anon_sym_RBRACK, - ACTIONS(3838), 1, + ACTIONS(3817), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2600), 3, + STATE(2602), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [160436] = 4, - ACTIONS(1473), 1, + [158501] = 4, + ACTIONS(3867), 1, + anon_sym_PIPE, + STATE(2646), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1519), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [158518] = 4, + ACTIONS(180), 1, anon_sym_LBRACK, - ACTIONS(3854), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(986), 4, + STATE(1908), 4, sym_list, sym_dictionary, sym_list_comprehension, sym_dictionary_comprehension, - [160453] = 3, - STATE(3070), 1, + [158535] = 5, + ACTIONS(3747), 1, + sym_identifier, + STATE(2691), 1, + sym_parameter, + STATE(2931), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2704), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [158554] = 3, + STATE(3114), 1, sym_basic_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3729), 5, + ACTIONS(3743), 5, anon_sym_any, anon_sym_str, anon_sym_int, anon_sym_float, anon_sym_bool, - [160468] = 5, - ACTIONS(1459), 1, - anon_sym_LF, - STATE(2617), 1, + [158569] = 3, + ACTIONS(3872), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1526), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [158583] = 4, + STATE(1299), 1, aux_sym_dotted_name_repeat1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1461), 2, - anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3846), 2, + anon_sym_PIPE, + ACTIONS(3874), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [160487] = 6, - ACTIONS(3856), 1, + [158599] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3858), 1, + ACTIONS(3878), 1, anon_sym_RPAREN, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2798), 1, + STATE(2782), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160507] = 6, - ACTIONS(3856), 1, + [158619] = 3, + STATE(2663), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1503), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PIPE, + [158633] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3862), 1, + ACTIONS(3882), 1, anon_sym_RPAREN, - STATE(2689), 1, - aux_sym_union_type_repeat1, STATE(2715), 1, + aux_sym_union_type_repeat1, + STATE(2828), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160527] = 3, - STATE(2634), 1, - aux_sym_union_type_repeat1, + [158653] = 3, + ACTIONS(3884), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 4, + ACTIONS(1503), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [160541] = 6, - ACTIONS(3856), 1, + [158667] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3864), 1, + ACTIONS(3886), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2829), 1, + STATE(2820), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160561] = 6, - ACTIONS(3856), 1, + [158687] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3866), 1, + ACTIONS(3888), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2709), 1, + STATE(2872), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160581] = 6, - ACTIONS(3856), 1, + [158707] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3868), 1, + ACTIONS(3890), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2756), 1, + STATE(2773), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160601] = 6, - ACTIONS(3856), 1, - anon_sym_COMMA, - ACTIONS(3860), 1, - anon_sym_PIPE, - ACTIONS(3870), 1, - anon_sym_RPAREN, - STATE(2689), 1, - aux_sym_union_type_repeat1, - STATE(2801), 1, - aux_sym_function_type_repeat1, + [158727] = 4, + STATE(2670), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160621] = 3, - ACTIONS(3872), 1, + ACTIONS(1471), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(3892), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [158743] = 3, + ACTIONS(3894), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1245), 4, + ACTIONS(1536), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [160635] = 3, - ACTIONS(3874), 1, - anon_sym_DASH_GT, + [158757] = 3, + STATE(2663), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, + ACTIONS(1552), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [160649] = 6, - ACTIONS(3856), 1, + [158771] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3876), 1, + ACTIONS(3896), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2749), 1, + STATE(2812), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160669] = 4, - ACTIONS(3878), 1, - anon_sym_PIPE, - STATE(2634), 1, + [158791] = 3, + STATE(2680), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 3, + ACTIONS(1443), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, - [160685] = 6, - ACTIONS(3856), 1, - anon_sym_COMMA, - ACTIONS(3860), 1, anon_sym_PIPE, - ACTIONS(3881), 1, - anon_sym_RPAREN, - STATE(2689), 1, - aux_sym_union_type_repeat1, - STATE(2705), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160705] = 4, - ACTIONS(3731), 1, + [158805] = 4, + ACTIONS(3898), 1, sym_identifier, - STATE(2826), 1, + STATE(3231), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, + STATE(2704), 3, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, - [160721] = 6, - ACTIONS(3856), 1, + [158821] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3883), 1, + ACTIONS(3900), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2845), 1, + STATE(2746), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160741] = 6, - ACTIONS(3856), 1, + [158841] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3885), 1, + ACTIONS(3902), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2804), 1, + STATE(2737), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160761] = 6, - ACTIONS(3856), 1, + [158861] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3887), 1, + ACTIONS(3904), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2783), 1, + STATE(2840), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160781] = 6, - ACTIONS(3856), 1, + [158881] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3889), 1, + ACTIONS(3906), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2819), 1, + STATE(2762), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160801] = 6, - ACTIONS(3856), 1, + [158901] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3891), 1, + ACTIONS(3908), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, - STATE(2761), 1, + STATE(2780), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [158921] = 4, + STATE(1468), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1461), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(3892), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [158937] = 6, + ACTIONS(3876), 1, + anon_sym_COMMA, + ACTIONS(3880), 1, + anon_sym_PIPE, + ACTIONS(3910), 1, + anon_sym_RPAREN, + STATE(2715), 1, + aux_sym_union_type_repeat1, + STATE(2847), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160821] = 6, - ACTIONS(3856), 1, + [158957] = 6, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3893), 1, + ACTIONS(3912), 1, anon_sym_RPAREN, - STATE(2689), 1, + STATE(2715), 1, aux_sym_union_type_repeat1, STATE(2758), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160841] = 3, - STATE(2626), 1, + [158977] = 6, + ACTIONS(3876), 1, + anon_sym_COMMA, + ACTIONS(3880), 1, + anon_sym_PIPE, + ACTIONS(3914), 1, + anon_sym_RPAREN, + STATE(2715), 1, aux_sym_union_type_repeat1, + STATE(2798), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1241), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_PIPE, - [160855] = 3, - STATE(2626), 1, + [158997] = 3, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 4, + ACTIONS(1544), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_LBRACE, anon_sym_PIPE, - [160869] = 4, - STATE(1293), 1, + [159011] = 4, + STATE(2651), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 2, + ACTIONS(1471), 2, anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(3895), 2, + ACTIONS(3874), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - [160885] = 4, - STATE(2645), 1, - aux_sym_dotted_name_repeat1, + [159027] = 4, + ACTIONS(3747), 1, + sym_identifier, + STATE(2794), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1459), 2, - anon_sym_RBRACE, - anon_sym_PIPE, - ACTIONS(3895), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [160901] = 4, - STATE(1455), 1, - aux_sym_dotted_name_repeat1, + STATE(2704), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [159043] = 4, + ACTIONS(3898), 1, + sym_identifier, + STATE(3188), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 2, - anon_sym_RBRACK, + STATE(2704), 3, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + [159059] = 6, + ACTIONS(3876), 1, + anon_sym_COMMA, + ACTIONS(3880), 1, anon_sym_PIPE, - ACTIONS(3897), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [160917] = 4, - STATE(2647), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3916), 1, + anon_sym_RPAREN, + STATE(2715), 1, + aux_sym_union_type_repeat1, + STATE(2808), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1459), 2, - anon_sym_RBRACK, + [159079] = 3, + STATE(2663), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1519), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_PIPE, - ACTIONS(3897), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [160933] = 6, - ACTIONS(3856), 1, - anon_sym_COMMA, - ACTIONS(3860), 1, + [159093] = 4, + ACTIONS(3918), 1, anon_sym_PIPE, - ACTIONS(3899), 1, - anon_sym_RPAREN, - STATE(2689), 1, + STATE(2680), 1, aux_sym_union_type_repeat1, - STATE(2836), 1, - aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160953] = 4, - ACTIONS(3901), 1, - sym_identifier, - STATE(3166), 1, - sym_parameter, + ACTIONS(1519), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + [159109] = 3, + STATE(2717), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1544), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [159122] = 3, + ACTIONS(3921), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1536), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [159135] = 3, + STATE(2715), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [160969] = 3, - ACTIONS(3903), 1, - anon_sym_DASH_GT, + ACTIONS(1519), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [159148] = 4, + ACTIONS(3923), 1, + anon_sym_PIPE, + STATE(2684), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 4, - anon_sym_COLON, + ACTIONS(1519), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159163] = 5, + ACTIONS(3926), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(3928), 1, anon_sym_PIPE, - [160983] = 3, - STATE(2626), 1, + ACTIONS(3930), 1, + sym__newline, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, + [159180] = 5, + ACTIONS(3928), 1, anon_sym_PIPE, - [160997] = 4, - ACTIONS(3901), 1, - sym_identifier, - STATE(2979), 1, - sym_parameter, + ACTIONS(3932), 1, + anon_sym_EQ, + ACTIONS(3934), 1, + sym__newline, + STATE(2717), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 3, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - [161013] = 3, - STATE(2626), 1, + [159197] = 3, + STATE(2715), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(1503), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - [161027] = 3, - STATE(2673), 1, + [159210] = 5, + ACTIONS(3928), 1, + anon_sym_PIPE, + ACTIONS(3936), 1, + anon_sym_EQ, + ACTIONS(3938), 1, + sym__newline, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 3, - sym__newline, - anon_sym_EQ, + [159227] = 3, + ACTIONS(3940), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1503), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - [161040] = 3, - ACTIONS(3905), 1, + [159240] = 3, + ACTIONS(3942), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 3, + ACTIONS(1503), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [161053] = 4, - ACTIONS(3860), 1, - anon_sym_PIPE, - STATE(2689), 1, - aux_sym_union_type_repeat1, + [159253] = 4, + ACTIONS(3944), 1, + anon_sym_COMMA, + STATE(2723), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3907), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161068] = 3, - ACTIONS(3909), 1, + ACTIONS(3946), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [159268] = 3, + ACTIONS(3948), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 3, - sym__newline, - anon_sym_EQ, + ACTIONS(1526), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE, - [161081] = 5, - ACTIONS(3911), 1, + [159281] = 5, + ACTIONS(3950), 1, anon_sym_COMMA, - ACTIONS(3913), 1, + ACTIONS(3952), 1, anon_sym_RBRACE, - ACTIONS(3915), 1, + ACTIONS(3954), 1, anon_sym_LF, - STATE(2841), 1, + STATE(2816), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161098] = 5, - ACTIONS(3915), 1, + [159298] = 3, + STATE(2715), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1552), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE, + [159311] = 5, + ACTIONS(3954), 1, anon_sym_LF, - ACTIONS(3917), 1, + ACTIONS(3956), 1, anon_sym_COMMA, - ACTIONS(3919), 1, + ACTIONS(3958), 1, anon_sym_RBRACE, - STATE(2780), 1, + STATE(2783), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161115] = 5, - ACTIONS(3915), 1, - anon_sym_LF, - ACTIONS(3921), 1, + [159328] = 5, + ACTIONS(3960), 1, anon_sym_COMMA, - ACTIONS(3923), 1, + ACTIONS(3963), 1, anon_sym_RBRACE, - STATE(2743), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3965), 1, + anon_sym_LF, + STATE(2696), 1, + aux_sym_config_entries_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161132] = 5, - ACTIONS(3925), 1, + [159345] = 5, + ACTIONS(3968), 1, anon_sym_COMMA, - ACTIONS(3928), 1, + ACTIONS(3970), 1, anon_sym_RBRACE, - ACTIONS(3930), 1, + ACTIONS(3972), 1, anon_sym_LF, - STATE(2662), 1, + STATE(2720), 1, aux_sym_config_entries_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161149] = 2, - ACTIONS(3), 2, + [159362] = 5, + ACTIONS(3954), 1, + anon_sym_LF, + ACTIONS(3974), 1, + anon_sym_COMMA, + ACTIONS(3976), 1, + anon_sym_RBRACE, + STATE(2886), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3814), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [161160] = 5, - ACTIONS(3933), 1, - anon_sym_EQ, - ACTIONS(3935), 1, + [159379] = 5, + ACTIONS(3928), 1, anon_sym_PIPE, - ACTIONS(3937), 1, + ACTIONS(3978), 1, + anon_sym_EQ, + ACTIONS(3980), 1, sym__newline, - STATE(2673), 1, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161177] = 4, - ACTIONS(3939), 1, + [159396] = 5, + ACTIONS(3928), 1, anon_sym_PIPE, - STATE(2665), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1273), 2, - sym__newline, + ACTIONS(3982), 1, anon_sym_EQ, - [161192] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3942), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [161203] = 4, - ACTIONS(3944), 1, - anon_sym_COMMA, - STATE(2676), 1, - aux_sym__parameters_repeat1, + ACTIONS(3984), 1, + sym__newline, + STATE(2717), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3946), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [161218] = 4, - ACTIONS(3948), 1, + [159413] = 5, + ACTIONS(3954), 1, + anon_sym_LF, + ACTIONS(3986), 1, anon_sym_COMMA, - STATE(2668), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3951), 2, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [161233] = 3, - ACTIONS(3953), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1245), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [161246] = 3, - ACTIONS(3955), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + ACTIONS(3988), 1, + anon_sym_RBRACE, + STATE(2776), 1, + aux_sym_dictionary_repeat1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [161259] = 3, - STATE(2689), 1, + [159430] = 3, + STATE(2715), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1241), 3, + ACTIONS(1544), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [161272] = 3, - STATE(2689), 1, - aux_sym_union_type_repeat1, + [159443] = 4, + ACTIONS(3990), 1, + anon_sym_COMMA, + STATE(2703), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [161285] = 3, - STATE(2665), 1, - aux_sym_union_type_repeat1, + ACTIONS(3993), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [159458] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 3, - sym__newline, + ACTIONS(3761), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [159469] = 5, + ACTIONS(3853), 1, + anon_sym_COLON, + ACTIONS(3995), 1, anon_sym_EQ, + ACTIONS(3997), 1, anon_sym_PIPE, - [161298] = 3, - STATE(2673), 1, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [161311] = 5, - ACTIONS(3935), 1, + [159486] = 5, + ACTIONS(3928), 1, anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(3999), 1, anon_sym_EQ, - ACTIONS(3959), 1, + ACTIONS(4001), 1, sym__newline, - STATE(2673), 1, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161328] = 4, - ACTIONS(3961), 1, - anon_sym_COMMA, - STATE(2668), 1, - aux_sym__parameters_repeat1, + [159503] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3735), 2, + ACTIONS(4003), 4, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_DASH_GT, anon_sym_LBRACE, - [161343] = 3, - STATE(2673), 1, + [159514] = 3, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 3, + ACTIONS(1552), 3, sym__newline, anon_sym_EQ, anon_sym_PIPE, - [161356] = 5, - ACTIONS(3915), 1, - anon_sym_LF, - ACTIONS(3963), 1, - anon_sym_COMMA, - ACTIONS(3965), 1, - anon_sym_RBRACE, - STATE(2787), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [161373] = 3, - STATE(2689), 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, - [161386] = 3, - STATE(2673), 1, - aux_sym_union_type_repeat1, + [159527] = 4, + ACTIONS(1471), 1, + sym__newline, + STATE(2248), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1241), 3, - sym__newline, - anon_sym_EQ, - anon_sym_PIPE, - [161399] = 5, - ACTIONS(3915), 1, + ACTIONS(3088), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + [159542] = 5, + ACTIONS(3954), 1, anon_sym_LF, - ACTIONS(3967), 1, + ACTIONS(4005), 1, anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(4007), 1, anon_sym_RBRACE, - STATE(2792), 1, + STATE(2730), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161416] = 4, - ACTIONS(3971), 1, + [159559] = 5, + ACTIONS(3928), 1, anon_sym_PIPE, - STATE(2682), 1, + ACTIONS(4009), 1, + anon_sym_EQ, + ACTIONS(4011), 1, + sym__newline, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161431] = 5, - ACTIONS(3935), 1, + [159576] = 5, + ACTIONS(3928), 1, anon_sym_PIPE, - ACTIONS(3974), 1, + ACTIONS(4013), 1, anon_sym_EQ, - ACTIONS(3976), 1, + ACTIONS(4015), 1, sym__newline, - STATE(2673), 1, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161448] = 5, - ACTIONS(3915), 1, + [159593] = 5, + ACTIONS(3954), 1, anon_sym_LF, - ACTIONS(3978), 1, + ACTIONS(4017), 1, anon_sym_COMMA, - ACTIONS(3980), 1, + ACTIONS(4019), 1, anon_sym_RBRACE, - STATE(2754), 1, + STATE(2774), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161465] = 5, - ACTIONS(3915), 1, + [159610] = 5, + ACTIONS(3954), 1, anon_sym_LF, - ACTIONS(3982), 1, + ACTIONS(4021), 1, anon_sym_COMMA, - ACTIONS(3984), 1, + ACTIONS(4023), 1, anon_sym_RBRACE, - STATE(2712), 1, + STATE(2848), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161482] = 5, - ACTIONS(3986), 1, - anon_sym_COMMA, - ACTIONS(3988), 1, - anon_sym_RBRACE, - ACTIONS(3990), 1, - anon_sym_LF, - STATE(2697), 1, - aux_sym_config_entries_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [161499] = 3, - ACTIONS(3992), 1, - anon_sym_DASH_GT, + [159627] = 3, + STATE(2684), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 3, + ACTIONS(1443), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE, - [161512] = 5, - ACTIONS(3935), 1, - anon_sym_PIPE, - ACTIONS(3994), 1, - anon_sym_EQ, - ACTIONS(3996), 1, - sym__newline, - STATE(2673), 1, - aux_sym_union_type_repeat1, + [159640] = 3, + ACTIONS(4025), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161529] = 3, - STATE(2682), 1, + ACTIONS(1536), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [159653] = 3, + STATE(2722), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1443), 3, + sym__newline, + anon_sym_EQ, anon_sym_PIPE, - [161542] = 5, - ACTIONS(3935), 1, + [159666] = 5, + ACTIONS(3928), 1, anon_sym_PIPE, - ACTIONS(3998), 1, + ACTIONS(4027), 1, anon_sym_EQ, - ACTIONS(4000), 1, + ACTIONS(4029), 1, sym__newline, - STATE(2673), 1, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161559] = 4, - ACTIONS(1459), 1, - sym__newline, - STATE(2223), 1, - aux_sym_dotted_name_repeat1, + [159683] = 3, + ACTIONS(4031), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - [161574] = 3, - STATE(2689), 1, + ACTIONS(1526), 3, + sym__newline, + anon_sym_EQ, + anon_sym_PIPE, + [159696] = 5, + ACTIONS(3068), 1, + anon_sym_RBRACE, + ACTIONS(4033), 1, + anon_sym_COMMA, + ACTIONS(4035), 1, + anon_sym_LF, + STATE(2696), 1, + aux_sym_config_entries_repeat1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [159713] = 4, + ACTIONS(3880), 1, + anon_sym_PIPE, + STATE(2715), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 3, + ACTIONS(4037), 2, anon_sym_COMMA, anon_sym_RPAREN, + [159728] = 4, + ACTIONS(4039), 1, anon_sym_PIPE, - [161587] = 5, - ACTIONS(3935), 1, - anon_sym_PIPE, - ACTIONS(4002), 1, - anon_sym_EQ, - ACTIONS(4004), 1, - sym__newline, - STATE(2673), 1, + STATE(2722), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161604] = 3, - ACTIONS(4006), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1245), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE, - [161617] = 5, - ACTIONS(3848), 1, - anon_sym_COLON, - ACTIONS(4008), 1, + ACTIONS(1519), 2, + sym__newline, anon_sym_EQ, - ACTIONS(4010), 1, - anon_sym_PIPE, - STATE(2626), 1, - aux_sym_union_type_repeat1, + [159743] = 4, + ACTIONS(4042), 1, + anon_sym_COMMA, + STATE(2703), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161634] = 5, - ACTIONS(3915), 1, + ACTIONS(3755), 2, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [159758] = 5, + ACTIONS(3954), 1, anon_sym_LF, - ACTIONS(4012), 1, + ACTIONS(4044), 1, anon_sym_COMMA, - ACTIONS(4014), 1, + ACTIONS(4046), 1, anon_sym_RBRACE, - STATE(2763), 1, + STATE(2796), 1, aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161651] = 5, - ACTIONS(3082), 1, - anon_sym_RBRACE, - ACTIONS(4016), 1, - anon_sym_COMMA, - ACTIONS(4018), 1, + [159775] = 5, + ACTIONS(3954), 1, anon_sym_LF, - STATE(2662), 1, - aux_sym_config_entries_repeat1, + ACTIONS(4048), 1, + anon_sym_COMMA, + ACTIONS(4050), 1, + anon_sym_RBRACE, + STATE(2879), 1, + aux_sym_dictionary_repeat1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [161668] = 5, - ACTIONS(3935), 1, - anon_sym_PIPE, - ACTIONS(4020), 1, - anon_sym_EQ, - ACTIONS(4022), 1, - sym__newline, - STATE(2673), 1, + [159792] = 3, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161685] = 5, - ACTIONS(3935), 1, - anon_sym_PIPE, - ACTIONS(4024), 1, - anon_sym_EQ, - ACTIONS(4026), 1, + ACTIONS(1519), 3, sym__newline, - STATE(2673), 1, + anon_sym_EQ, + anon_sym_PIPE, + [159805] = 3, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161702] = 5, - ACTIONS(3935), 1, - anon_sym_PIPE, - ACTIONS(4028), 1, - anon_sym_EQ, - ACTIONS(4030), 1, + ACTIONS(1503), 3, sym__newline, - STATE(2673), 1, + anon_sym_EQ, + anon_sym_PIPE, + [159818] = 3, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161719] = 5, - ACTIONS(3915), 1, - anon_sym_LF, - ACTIONS(4032), 1, - anon_sym_COMMA, - ACTIONS(4034), 1, - anon_sym_RBRACE, - STATE(2727), 1, - aux_sym_dictionary_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [161736] = 4, - ACTIONS(3210), 1, - anon_sym_COMMA, - ACTIONS(3212), 1, + ACTIONS(1519), 2, anon_sym_RBRACK, - STATE(2708), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161750] = 4, - ACTIONS(4036), 1, - anon_sym_COMMA, - ACTIONS(4039), 1, - anon_sym_RBRACE, - STATE(2703), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161764] = 4, - ACTIONS(4041), 1, + anon_sym_PIPE, + [159830] = 4, + ACTIONS(4052), 1, anon_sym_RBRACK, - ACTIONS(4043), 1, + ACTIONS(4054), 1, anon_sym_PIPE, - STATE(2797), 1, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161778] = 4, - ACTIONS(3856), 1, + [159844] = 4, + ACTIONS(736), 1, + anon_sym_RBRACE, + ACTIONS(4056), 1, anon_sym_COMMA, - ACTIONS(4045), 1, - anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + STATE(2800), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161792] = 4, - ACTIONS(3166), 1, + [159858] = 4, + ACTIONS(1163), 1, + anon_sym_RPAREN, + ACTIONS(4058), 1, anon_sym_COMMA, - ACTIONS(3168), 1, - anon_sym_RBRACK, - STATE(2809), 1, - aux_sym_subscript_repeat1, + STATE(2827), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161806] = 4, - ACTIONS(4043), 1, + [159872] = 4, + ACTIONS(4054), 1, anon_sym_PIPE, - ACTIONS(4047), 1, + ACTIONS(4060), 1, anon_sym_RBRACK, - STATE(2797), 1, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161820] = 4, - ACTIONS(4049), 1, + [159886] = 4, + ACTIONS(4062), 1, anon_sym_COMMA, - ACTIONS(4051), 1, + ACTIONS(4064), 1, anon_sym_RBRACK, - STATE(2795), 1, + STATE(2831), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161834] = 4, - ACTIONS(3856), 1, + [159900] = 4, + ACTIONS(3236), 1, anon_sym_COMMA, - ACTIONS(4053), 1, + ACTIONS(3238), 1, anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + STATE(2739), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161848] = 4, - ACTIONS(4055), 1, + [159914] = 4, + ACTIONS(3228), 1, anon_sym_COMMA, - ACTIONS(4057), 1, + ACTIONS(3230), 1, anon_sym_RBRACK, - STATE(2795), 1, + STATE(2743), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161862] = 4, - ACTIONS(3739), 1, - sym_identifier, - STATE(2895), 1, - sym_dotted_name, - STATE(3138), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161876] = 4, - ACTIONS(688), 1, - anon_sym_RBRACE, - ACTIONS(4059), 1, - anon_sym_COMMA, - STATE(2703), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161890] = 4, - ACTIONS(3832), 1, - anon_sym_COMMA, - ACTIONS(3834), 1, + [159928] = 4, + ACTIONS(4066), 1, anon_sym_RBRACE, - STATE(2841), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161904] = 4, - ACTIONS(1089), 1, - anon_sym_RPAREN, - ACTIONS(4061), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4068), 1, + anon_sym_PIPE, + STATE(2876), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161918] = 4, - ACTIONS(3856), 1, + [159942] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(4063), 1, + ACTIONS(4070), 1, anon_sym_RPAREN, - STATE(2843), 1, + STATE(2852), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161932] = 4, - ACTIONS(2820), 1, + [159956] = 4, + ACTIONS(2976), 1, anon_sym_RBRACE, - ACTIONS(4065), 1, + ACTIONS(4068), 1, anon_sym_PIPE, - STATE(2850), 1, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161946] = 4, - ACTIONS(3220), 1, - anon_sym_COMMA, - ACTIONS(3222), 1, - anon_sym_RPAREN, - STATE(2728), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [161960] = 4, - ACTIONS(1125), 1, + [159970] = 4, + ACTIONS(914), 1, anon_sym_RPAREN, - ACTIONS(4067), 1, + ACTIONS(4072), 1, anon_sym_COMMA, - STATE(2769), 1, + STATE(2827), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161974] = 4, - ACTIONS(4069), 1, - anon_sym_COMMA, - ACTIONS(4071), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + [159984] = 4, + ACTIONS(3751), 1, + sym_identifier, + STATE(2939), 1, + sym_dotted_name, + STATE(3218), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161988] = 4, - ACTIONS(3184), 1, + [159998] = 4, + ACTIONS(4074), 1, anon_sym_COMMA, - ACTIONS(3186), 1, + ACTIONS(4076), 1, anon_sym_RBRACK, - STATE(2741), 1, + STATE(2831), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162002] = 4, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4073), 1, - anon_sym_COLON, - STATE(2626), 1, - aux_sym_union_type_repeat1, + [160012] = 4, + ACTIONS(4078), 1, + sym_identifier, + ACTIONS(4080), 1, + anon_sym_DOT, + STATE(2759), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162016] = 4, - ACTIONS(4075), 1, + [160026] = 4, + ACTIONS(4082), 1, anon_sym_COMMA, - ACTIONS(4077), 1, + ACTIONS(4084), 1, anon_sym_RBRACK, - STATE(2795), 1, + STATE(2831), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162030] = 4, - ACTIONS(4065), 1, - anon_sym_PIPE, - ACTIONS(4079), 1, - anon_sym_RBRACE, - STATE(2850), 1, - aux_sym_union_type_repeat1, + [160040] = 4, + ACTIONS(3114), 1, + anon_sym_COMMA, + ACTIONS(3116), 1, + anon_sym_RBRACK, + STATE(2760), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162044] = 4, - ACTIONS(4010), 1, + [160054] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(4086), 1, anon_sym_COLON, - STATE(2626), 1, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162058] = 4, - ACTIONS(3276), 1, + [160068] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3278), 1, + ACTIONS(4088), 1, anon_sym_RPAREN, - STATE(2835), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162072] = 4, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4083), 1, - anon_sym_EQ, - STATE(2626), 1, - aux_sym_union_type_repeat1, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162086] = 4, - ACTIONS(750), 1, - anon_sym_RBRACE, - ACTIONS(4085), 1, + [160082] = 4, + ACTIONS(4090), 1, anon_sym_COMMA, - STATE(2703), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4092), 1, + anon_sym_RBRACK, + STATE(2831), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162100] = 4, - ACTIONS(1191), 1, - anon_sym_RPAREN, - ACTIONS(4087), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_argument_list_repeat1, + [160096] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162114] = 4, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4094), 3, anon_sym_COLON, - STATE(2626), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162128] = 4, - ACTIONS(3272), 1, - anon_sym_COMMA, - ACTIONS(3274), 1, - anon_sym_RPAREN, - STATE(2824), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [160106] = 3, + ACTIONS(3954), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [162142] = 4, - ACTIONS(4043), 1, + ACTIONS(4096), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160118] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4091), 1, - anon_sym_RBRACK, - STATE(2797), 1, + ACTIONS(4098), 1, + anon_sym_EQ, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162156] = 4, - ACTIONS(4093), 1, - sym_identifier, - ACTIONS(4095), 1, - anon_sym_DOT, - STATE(2732), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162170] = 4, - ACTIONS(4098), 1, - sym_identifier, + [160132] = 4, + ACTIONS(2508), 1, + anon_sym_LPAREN, ACTIONS(4100), 1, - anon_sym_DOT, - STATE(2732), 1, - aux_sym_import_prefix_repeat1, + anon_sym_RPAREN, + STATE(3163), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162184] = 4, + [160146] = 4, + ACTIONS(4068), 1, + anon_sym_PIPE, ACTIONS(4102), 1, - anon_sym_COMMA, - ACTIONS(4104), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + anon_sym_RBRACE, + STATE(2876), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162198] = 4, - ACTIONS(3192), 1, + [160160] = 4, + ACTIONS(4104), 1, anon_sym_COMMA, - ACTIONS(3194), 1, + ACTIONS(4106), 1, anon_sym_RBRACK, - STATE(2842), 1, + STATE(2831), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162212] = 4, - ACTIONS(3768), 1, - anon_sym_COMMA, - ACTIONS(3770), 1, + [160174] = 4, + ACTIONS(4068), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, anon_sym_RBRACE, - STATE(2787), 1, - aux_sym_dictionary_repeat1, + STATE(2876), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162226] = 4, - ACTIONS(4065), 1, - anon_sym_PIPE, - ACTIONS(4106), 1, + [160188] = 4, + ACTIONS(2892), 1, anon_sym_RBRACE, - STATE(2850), 1, + ACTIONS(4068), 1, + anon_sym_PIPE, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162240] = 4, - ACTIONS(3286), 1, + [160202] = 4, + ACTIONS(4110), 1, anon_sym_COMMA, - ACTIONS(3288), 1, + ACTIONS(4112), 1, + anon_sym_RBRACK, + STATE(2831), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160216] = 4, + ACTIONS(1201), 1, anon_sym_RPAREN, - STATE(2770), 1, + ACTIONS(4114), 1, + anon_sym_COMMA, + STATE(2827), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162254] = 4, - ACTIONS(3772), 1, + [160230] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3774), 1, - anon_sym_RBRACE, - STATE(2712), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4116), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162268] = 4, - ACTIONS(3152), 1, - anon_sym_COMMA, - ACTIONS(3156), 1, - anon_sym_RBRACK, - STATE(2789), 1, - aux_sym_subscript_repeat1, + [160244] = 4, + ACTIONS(4118), 1, + sym_identifier, + ACTIONS(4120), 1, + anon_sym_DOT, + STATE(2759), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162282] = 4, - ACTIONS(4108), 1, + [160258] = 4, + ACTIONS(3114), 1, anon_sym_COMMA, - ACTIONS(4110), 1, + ACTIONS(4123), 1, anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + STATE(2792), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162296] = 4, - ACTIONS(4010), 1, + [160272] = 4, + ACTIONS(2890), 1, + anon_sym_RBRACE, + ACTIONS(4068), 1, anon_sym_PIPE, - ACTIONS(4112), 1, - anon_sym_LBRACE, - STATE(2626), 1, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162310] = 4, - ACTIONS(718), 1, - anon_sym_RBRACE, - ACTIONS(4114), 1, + [160286] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - STATE(2703), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4125), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162324] = 4, - ACTIONS(4116), 1, - anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + [160300] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162338] = 4, - ACTIONS(4010), 1, + ACTIONS(3186), 3, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [160310] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4120), 1, + ACTIONS(4127), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162352] = 4, - ACTIONS(1201), 1, - anon_sym_RPAREN, - ACTIONS(4122), 1, + [160324] = 4, + ACTIONS(3172), 1, anon_sym_COMMA, - STATE(2769), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3176), 1, + anon_sym_RBRACK, + STATE(2747), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162366] = 4, - ACTIONS(3170), 1, + [160338] = 4, + ACTIONS(3190), 1, anon_sym_COMMA, - ACTIONS(3172), 1, + ACTIONS(3192), 1, anon_sym_RBRACK, - STATE(2802), 1, + STATE(2753), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162380] = 4, - ACTIONS(4010), 1, + [160352] = 4, + ACTIONS(3292), 1, + anon_sym_COMMA, + ACTIONS(3294), 1, + anon_sym_RPAREN, + STATE(2757), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160366] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4124), 1, + ACTIONS(4129), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162394] = 4, - ACTIONS(3856), 1, + [160380] = 4, + ACTIONS(3296), 1, anon_sym_COMMA, - ACTIONS(4126), 1, + ACTIONS(3298), 1, anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + STATE(2731), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162408] = 4, - ACTIONS(4065), 1, + [160394] = 4, + ACTIONS(4054), 1, anon_sym_PIPE, - ACTIONS(4128), 1, - anon_sym_RBRACE, - STATE(2850), 1, + ACTIONS(4131), 1, + anon_sym_RBRACK, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162422] = 4, - ACTIONS(4010), 1, + [160408] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4130), 1, + ACTIONS(4133), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162436] = 4, - ACTIONS(4010), 1, + [160422] = 4, + ACTIONS(4054), 1, anon_sym_PIPE, - ACTIONS(4132), 1, - anon_sym_COLON, - STATE(2626), 1, + ACTIONS(4135), 1, + anon_sym_RBRACK, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162450] = 4, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4134), 1, - anon_sym_LBRACE, - STATE(2626), 1, - aux_sym_union_type_repeat1, + [160436] = 4, + ACTIONS(3876), 1, + anon_sym_COMMA, + ACTIONS(4137), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162464] = 4, - ACTIONS(704), 1, + [160450] = 4, + ACTIONS(712), 1, anon_sym_RBRACE, - ACTIONS(4136), 1, + ACTIONS(4139), 1, anon_sym_COMMA, - STATE(2703), 1, + STATE(2800), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162478] = 4, - ACTIONS(4010), 1, + [160464] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4138), 1, + ACTIONS(4141), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162492] = 4, - ACTIONS(3856), 1, + [160478] = 4, + ACTIONS(716), 1, + anon_sym_RBRACE, + ACTIONS(4143), 1, anon_sym_COMMA, - ACTIONS(4140), 1, - anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + STATE(2800), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162506] = 4, - ACTIONS(4010), 1, + [160492] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4142), 1, + ACTIONS(4145), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162520] = 4, - ACTIONS(3856), 1, - anon_sym_COMMA, - ACTIONS(4144), 1, - anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162534] = 4, - ACTIONS(2940), 1, + [160506] = 4, + ACTIONS(1519), 1, anon_sym_RBRACE, - ACTIONS(4065), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - STATE(2850), 1, + STATE(2778), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162548] = 4, - ACTIONS(4010), 1, + [160520] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4146), 1, - anon_sym_COLON, - STATE(2626), 1, + ACTIONS(4150), 1, + anon_sym_LBRACE, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162562] = 4, - ACTIONS(3856), 1, + [160534] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(4148), 1, + ACTIONS(4152), 1, anon_sym_RPAREN, - STATE(2843), 1, + STATE(2852), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162576] = 4, - ACTIONS(4150), 1, - anon_sym_COMMA, - ACTIONS(4152), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + [160548] = 4, + ACTIONS(3997), 1, + anon_sym_PIPE, + ACTIONS(4154), 1, + anon_sym_LBRACE, + STATE(2663), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162590] = 4, - ACTIONS(736), 1, - anon_sym_RBRACE, - ACTIONS(4154), 1, + [160562] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - STATE(2703), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4156), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162604] = 4, - ACTIONS(2888), 1, + [160576] = 4, + ACTIONS(702), 1, anon_sym_RBRACE, - ACTIONS(4065), 1, - anon_sym_PIPE, - STATE(2850), 1, - aux_sym_union_type_repeat1, + ACTIONS(4158), 1, + anon_sym_COMMA, + STATE(2800), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162618] = 4, - ACTIONS(4043), 1, + [160590] = 4, + ACTIONS(4054), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_RBRACK, - STATE(2797), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162632] = 4, - ACTIONS(4158), 1, - anon_sym_COMMA, ACTIONS(4160), 1, anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + STATE(2859), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162646] = 4, - ACTIONS(3935), 1, + [160604] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, ACTIONS(4162), 1, - sym__newline, - STATE(2673), 1, + anon_sym_COLON, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162660] = 4, - ACTIONS(4065), 1, + [160618] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, ACTIONS(4164), 1, - anon_sym_RBRACE, - STATE(2850), 1, + anon_sym_COLON, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162674] = 4, - ACTIONS(3350), 1, - anon_sym_RPAREN, + [160632] = 4, + ACTIONS(3997), 1, + anon_sym_PIPE, ACTIONS(4166), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_argument_list_repeat1, + anon_sym_COLON, + STATE(2663), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162688] = 4, - ACTIONS(1185), 1, - anon_sym_RPAREN, - ACTIONS(4169), 1, + [160646] = 4, + ACTIONS(3314), 1, anon_sym_COMMA, - STATE(2769), 1, + ACTIONS(3316), 1, + anon_sym_RPAREN, + STATE(2821), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162702] = 4, + [160660] = 4, ACTIONS(3200), 1, anon_sym_COMMA, ACTIONS(3202), 1, anon_sym_RBRACK, - STATE(2722), 1, + STATE(2823), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162716] = 2, + [160674] = 4, + ACTIONS(3837), 1, + anon_sym_COMMA, + ACTIONS(3839), 1, + anon_sym_RBRACE, + STATE(2783), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4171), 3, - anon_sym_if, - anon_sym_RBRACE, - anon_sym_for, - [162726] = 4, - ACTIONS(2846), 1, - anon_sym_RBRACE, - ACTIONS(4065), 1, + [160688] = 4, + ACTIONS(4068), 1, anon_sym_PIPE, - STATE(2850), 1, + ACTIONS(4168), 1, + anon_sym_RBRACE, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162740] = 4, - ACTIONS(3100), 1, - anon_sym_COMMA, - ACTIONS(3102), 1, + [160702] = 4, + ACTIONS(3360), 1, anon_sym_RBRACK, - STATE(2776), 1, + ACTIONS(4170), 1, + anon_sym_COMMA, + STATE(2792), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162754] = 4, - ACTIONS(3757), 1, + [160716] = 4, + ACTIONS(3997), 1, + anon_sym_PIPE, + ACTIONS(4173), 1, + anon_sym_LBRACE, + STATE(2663), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160730] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3993), 3, anon_sym_COMMA, - ACTIONS(3759), 1, + anon_sym_DASH_GT, + anon_sym_LBRACE, + [160740] = 4, + ACTIONS(4175), 1, + anon_sym_COMMA, + ACTIONS(4177), 1, + anon_sym_RBRACK, + STATE(2831), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160754] = 4, + ACTIONS(718), 1, anon_sym_RBRACE, - STATE(2727), 1, + ACTIONS(4179), 1, + anon_sym_COMMA, + STATE(2800), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162768] = 4, - ACTIONS(3100), 1, + [160768] = 4, + ACTIONS(4181), 1, anon_sym_COMMA, - ACTIONS(4173), 1, + ACTIONS(4183), 1, anon_sym_RBRACK, - STATE(2849), 1, - aux_sym__collection_elements_repeat1, + STATE(2831), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162782] = 4, - ACTIONS(3252), 1, + [160782] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3254), 1, + ACTIONS(4185), 1, anon_sym_RPAREN, - STATE(2746), 1, - aux_sym_argument_list_repeat1, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162796] = 4, - ACTIONS(2920), 1, - anon_sym_RBRACE, - ACTIONS(4065), 1, + [160796] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - STATE(2850), 1, + ACTIONS(4187), 1, + anon_sym_LBRACE, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162810] = 4, - ACTIONS(4175), 1, + [160810] = 4, + ACTIONS(4189), 1, anon_sym_COMMA, - ACTIONS(4177), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162824] = 4, - ACTIONS(746), 1, + ACTIONS(4192), 1, anon_sym_RBRACE, - ACTIONS(4179), 1, - anon_sym_COMMA, - STATE(2703), 1, + STATE(2800), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162838] = 3, - STATE(2797), 1, + [160824] = 4, + ACTIONS(4068), 1, + anon_sym_PIPE, + ACTIONS(4194), 1, + anon_sym_RBRACE, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 2, + [160838] = 3, + ACTIONS(4196), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3963), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160850] = 4, + ACTIONS(4198), 1, + anon_sym_COMMA, + ACTIONS(4200), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [162850] = 2, + STATE(2831), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3204), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [162860] = 4, - ACTIONS(3856), 1, + [160864] = 4, + ACTIONS(4202), 1, anon_sym_COMMA, - ACTIONS(4181), 1, + ACTIONS(4204), 1, + anon_sym_RBRACK, + STATE(2831), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160878] = 4, + ACTIONS(1179), 1, anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + ACTIONS(4206), 1, + anon_sym_COMMA, + STATE(2827), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162874] = 4, - ACTIONS(2952), 1, - anon_sym_RBRACE, - ACTIONS(4065), 1, + [160892] = 4, + ACTIONS(4054), 1, anon_sym_PIPE, - STATE(2850), 1, + ACTIONS(4208), 1, + anon_sym_RBRACK, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162888] = 4, - ACTIONS(4043), 1, + [160906] = 4, + ACTIONS(2946), 1, + anon_sym_RBRACE, + ACTIONS(4068), 1, anon_sym_PIPE, - ACTIONS(4183), 1, - anon_sym_RBRACK, - STATE(2797), 1, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162902] = 4, - ACTIONS(3304), 1, + [160920] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3306), 1, + ACTIONS(4210), 1, anon_sym_RPAREN, - STATE(2718), 1, - aux_sym_argument_list_repeat1, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162916] = 4, - ACTIONS(738), 1, + [160934] = 3, + ACTIONS(4214), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4212), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4185), 1, + [160946] = 4, + ACTIONS(3222), 1, anon_sym_COMMA, - STATE(2703), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3224), 1, + anon_sym_RBRACK, + STATE(2803), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162930] = 4, - ACTIONS(1219), 1, - anon_sym_RPAREN, - ACTIONS(4187), 1, + [160960] = 4, + ACTIONS(3288), 1, anon_sym_COMMA, - STATE(2769), 1, + ACTIONS(3290), 1, + anon_sym_RPAREN, + STATE(2805), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162944] = 4, - ACTIONS(4189), 1, + [160974] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(4191), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + ACTIONS(4216), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160988] = 4, + ACTIONS(972), 1, + anon_sym_RPAREN, + ACTIONS(4218), 1, + anon_sym_COMMA, + STATE(2827), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162958] = 4, - ACTIONS(4065), 1, + [161002] = 4, + ACTIONS(4054), 1, anon_sym_PIPE, - ACTIONS(4193), 1, - anon_sym_RBRACE, - STATE(2850), 1, + ACTIONS(4220), 1, + anon_sym_RBRACK, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162972] = 4, - ACTIONS(3778), 1, + [161016] = 4, + ACTIONS(3324), 1, anon_sym_COMMA, - ACTIONS(3780), 1, - anon_sym_RBRACE, - STATE(2754), 1, - aux_sym_dictionary_repeat1, + ACTIONS(3326), 1, + anon_sym_RPAREN, + STATE(2829), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162986] = 4, - ACTIONS(684), 1, + [161030] = 4, + ACTIONS(732), 1, anon_sym_RBRACE, - ACTIONS(4195), 1, + ACTIONS(4222), 1, anon_sym_COMMA, - STATE(2703), 1, + STATE(2800), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163000] = 4, - ACTIONS(2956), 1, + [161044] = 4, + ACTIONS(2966), 1, anon_sym_RBRACE, - ACTIONS(4065), 1, + ACTIONS(4068), 1, anon_sym_PIPE, - STATE(2850), 1, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163014] = 4, - ACTIONS(4065), 1, + [161058] = 4, + ACTIONS(3928), 1, anon_sym_PIPE, - ACTIONS(4197), 1, - anon_sym_RBRACE, - STATE(2850), 1, + ACTIONS(4224), 1, + sym__newline, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163028] = 4, - ACTIONS(4199), 1, + [161072] = 4, + ACTIONS(3206), 1, anon_sym_COMMA, - ACTIONS(4202), 1, + ACTIONS(3208), 1, anon_sym_RBRACK, - STATE(2795), 1, + STATE(2845), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163042] = 3, - ACTIONS(4204), 1, - anon_sym_DASH_GT, + [161086] = 4, + ACTIONS(3876), 1, + anon_sym_COMMA, + ACTIONS(4226), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1245), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [163054] = 3, - STATE(2825), 1, - aux_sym_union_type_repeat1, + [161100] = 4, + ACTIONS(1199), 1, + anon_sym_RPAREN, + ACTIONS(4228), 1, + anon_sym_COMMA, + STATE(2827), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 2, + [161114] = 4, + ACTIONS(4230), 1, + anon_sym_COMMA, + ACTIONS(4232), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [163066] = 4, - ACTIONS(3856), 1, + STATE(2831), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161128] = 4, + ACTIONS(4234), 1, anon_sym_COMMA, - ACTIONS(4206), 1, - anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + ACTIONS(4236), 1, + anon_sym_RBRACK, + STATE(2831), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163080] = 4, - ACTIONS(4010), 1, + [161142] = 3, + ACTIONS(4240), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4238), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161154] = 4, + ACTIONS(4068), 1, anon_sym_PIPE, - ACTIONS(4208), 1, - anon_sym_LBRACE, - STATE(2626), 1, + ACTIONS(4242), 1, + anon_sym_RBRACE, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163094] = 4, - ACTIONS(4043), 1, + [161168] = 4, + ACTIONS(2964), 1, + anon_sym_RBRACE, + ACTIONS(4068), 1, anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_RBRACK, - STATE(2797), 1, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163108] = 4, - ACTIONS(3856), 1, + [161182] = 4, + ACTIONS(3362), 1, + anon_sym_RPAREN, + ACTIONS(4244), 1, + anon_sym_COMMA, + STATE(2827), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161196] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(4212), 1, + ACTIONS(4247), 1, anon_sym_RPAREN, - STATE(2843), 1, + STATE(2852), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163122] = 4, - ACTIONS(4214), 1, + [161210] = 4, + ACTIONS(878), 1, + anon_sym_RPAREN, + ACTIONS(4249), 1, anon_sym_COMMA, - ACTIONS(4216), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + STATE(2827), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163136] = 3, - ACTIONS(3204), 1, - anon_sym_LF, - ACTIONS(5), 2, + [161224] = 4, + ACTIONS(2896), 1, + anon_sym_RBRACE, + ACTIONS(4068), 1, + anon_sym_PIPE, + STATE(2876), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3206), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163148] = 4, - ACTIONS(3856), 1, + [161238] = 4, + ACTIONS(4251), 1, anon_sym_COMMA, - ACTIONS(4218), 1, - anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + ACTIONS(4254), 1, + anon_sym_RBRACK, + STATE(2831), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163162] = 3, - ACTIONS(4222), 1, - anon_sym_LF, - ACTIONS(5), 2, + [161252] = 4, + ACTIONS(3997), 1, + anon_sym_PIPE, + ACTIONS(4256), 1, + anon_sym_COLON, + STATE(2663), 1, + aux_sym_union_type_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4220), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163174] = 4, - ACTIONS(4010), 1, + [161266] = 4, + ACTIONS(4068), 1, anon_sym_PIPE, - ACTIONS(4224), 1, - anon_sym_LBRACE, - STATE(2626), 1, + ACTIONS(4258), 1, + anon_sym_RBRACE, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163188] = 4, - ACTIONS(4226), 1, - anon_sym_COMMA, - ACTIONS(4229), 1, + [161280] = 4, + ACTIONS(4054), 1, + anon_sym_PIPE, + ACTIONS(4260), 1, anon_sym_RBRACK, - STATE(2807), 1, - aux_sym_quant_target_repeat1, + STATE(2859), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163202] = 4, - ACTIONS(4043), 1, - anon_sym_PIPE, - ACTIONS(4231), 1, + [161294] = 4, + ACTIONS(4262), 1, + anon_sym_COMMA, + ACTIONS(4264), 1, anon_sym_RBRACK, - STATE(2797), 1, - aux_sym_union_type_repeat1, + STATE(2831), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163216] = 4, - ACTIONS(4233), 1, + [161308] = 4, + ACTIONS(4266), 1, anon_sym_COMMA, - ACTIONS(4235), 1, + ACTIONS(4268), 1, anon_sym_RBRACK, - STATE(2795), 1, + STATE(2831), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163230] = 4, - ACTIONS(4237), 1, + [161322] = 4, + ACTIONS(1064), 1, + anon_sym_RPAREN, + ACTIONS(4270), 1, + anon_sym_COMMA, + STATE(2827), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161336] = 4, + ACTIONS(4272), 1, anon_sym_COMMA, - ACTIONS(4239), 1, + ACTIONS(4274), 1, anon_sym_RBRACK, - STATE(2795), 1, + STATE(2831), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163244] = 4, - ACTIONS(1273), 1, + [161350] = 4, + ACTIONS(2894), 1, anon_sym_RBRACE, - ACTIONS(4241), 1, + ACTIONS(4068), 1, anon_sym_PIPE, - STATE(2811), 1, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163258] = 4, - ACTIONS(3840), 1, + [161364] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(3842), 1, - anon_sym_RBRACE, - STATE(2743), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4276), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163272] = 4, - ACTIONS(3244), 1, + [161378] = 4, + ACTIONS(4278), 1, anon_sym_COMMA, - ACTIONS(3246), 1, - anon_sym_RPAREN, - STATE(2867), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4280), 1, + anon_sym_RBRACK, + STATE(2849), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163286] = 3, - ACTIONS(3915), 1, - anon_sym_LF, - ACTIONS(5), 2, + [161392] = 4, + ACTIONS(3212), 1, + anon_sym_COMMA, + ACTIONS(3214), 1, + anon_sym_RBRACK, + STATE(2835), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4244), 2, + [161406] = 4, + ACTIONS(3328), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [163298] = 3, - ACTIONS(4248), 1, - anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(3330), 1, + anon_sym_RPAREN, + STATE(2837), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4246), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163310] = 3, - ACTIONS(4250), 1, - anon_sym_DASH_GT, + [161420] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 2, + ACTIONS(4282), 3, + anon_sym_if, anon_sym_RBRACK, - anon_sym_PIPE, - [163322] = 3, - ACTIONS(4252), 1, - anon_sym_LF, - ACTIONS(5), 2, + anon_sym_for, + [161430] = 4, + ACTIONS(4284), 1, + anon_sym_COMMA, + ACTIONS(4286), 1, + anon_sym_RBRACK, + STATE(2831), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163334] = 4, - ACTIONS(4043), 1, + [161444] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4254), 1, - anon_sym_RBRACK, - STATE(2797), 1, + ACTIONS(4288), 1, + anon_sym_COLON, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163348] = 4, - ACTIONS(3856), 1, + [161458] = 4, + ACTIONS(3876), 1, anon_sym_COMMA, - ACTIONS(4256), 1, + ACTIONS(4290), 1, anon_sym_RPAREN, - STATE(2843), 1, + STATE(2852), 1, aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163362] = 4, - ACTIONS(4065), 1, - anon_sym_PIPE, - ACTIONS(4258), 1, + [161472] = 4, + ACTIONS(726), 1, anon_sym_RBRACE, - STATE(2850), 1, - aux_sym_union_type_repeat1, + ACTIONS(4292), 1, + anon_sym_COMMA, + STATE(2800), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163376] = 4, - ACTIONS(3743), 1, + [161486] = 4, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3745), 1, - anon_sym_RBRACE, - STATE(2792), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4297), 1, + anon_sym_RBRACK, + STATE(2849), 1, + aux_sym_quant_target_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163390] = 3, - STATE(2797), 1, + [161500] = 4, + ACTIONS(4068), 1, + anon_sym_PIPE, + ACTIONS(4299), 1, + anon_sym_RBRACE, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 2, + [161514] = 4, + ACTIONS(3194), 1, + anon_sym_COMMA, + ACTIONS(3196), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [163402] = 4, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4260), 1, - anon_sym_COLON, - STATE(2626), 1, - aux_sym_union_type_repeat1, + STATE(2795), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163416] = 4, - ACTIONS(1075), 1, + [161528] = 4, + ACTIONS(4037), 1, anon_sym_RPAREN, - ACTIONS(4262), 1, + ACTIONS(4301), 1, anon_sym_COMMA, - STATE(2769), 1, - aux_sym_argument_list_repeat1, + STATE(2852), 1, + aux_sym_function_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163430] = 4, - ACTIONS(1273), 1, - anon_sym_RBRACK, - ACTIONS(4264), 1, + [161542] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - STATE(2825), 1, + ACTIONS(4304), 1, + anon_sym_COLON, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163444] = 2, - ACTIONS(3), 2, + [161556] = 3, + ACTIONS(3186), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3951), 3, + ACTIONS(3188), 2, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LBRACE, - [163454] = 4, - ACTIONS(3753), 1, + anon_sym_RBRACE, + [161568] = 4, + ACTIONS(3799), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3801), 1, anon_sym_RBRACE, - STATE(2763), 1, + STATE(2879), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163468] = 4, - ACTIONS(2490), 1, - anon_sym_LPAREN, - ACTIONS(4267), 1, - anon_sym_RPAREN, - STATE(3067), 1, - sym_argument_list, + [161582] = 4, + ACTIONS(3761), 1, + anon_sym_COLON, + ACTIONS(3765), 1, + anon_sym_LBRACK, + ACTIONS(4306), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163482] = 4, - ACTIONS(3856), 1, - anon_sym_COMMA, - ACTIONS(4269), 1, - anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + [161596] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163496] = 4, - ACTIONS(3158), 1, - anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_RBRACK, - STATE(2862), 1, - aux_sym_subscript_repeat1, + ACTIONS(4282), 3, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_for, + [161606] = 3, + ACTIONS(4308), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163510] = 4, - ACTIONS(4271), 1, - anon_sym_COMMA, - ACTIONS(4273), 1, + ACTIONS(1536), 2, anon_sym_RBRACK, - STATE(2807), 1, - aux_sym_quant_target_repeat1, + anon_sym_PIPE, + [161618] = 3, + STATE(2864), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163524] = 4, - ACTIONS(4275), 1, - anon_sym_COMMA, - ACTIONS(4277), 1, + ACTIONS(1443), 2, anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163538] = 4, - ACTIONS(3828), 1, + anon_sym_PIPE, + [161630] = 4, + ACTIONS(3827), 1, anon_sym_COMMA, - ACTIONS(3830), 1, + ACTIONS(3829), 1, anon_sym_RBRACE, - STATE(2780), 1, + STATE(2776), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163552] = 4, - ACTIONS(2908), 1, - anon_sym_RBRACE, - ACTIONS(4065), 1, - anon_sym_PIPE, - STATE(2850), 1, - aux_sym_union_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163566] = 4, - ACTIONS(1145), 1, - anon_sym_RPAREN, - ACTIONS(4279), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163580] = 4, - ACTIONS(3856), 1, + [161644] = 4, + ACTIONS(3304), 1, anon_sym_COMMA, - ACTIONS(4281), 1, + ACTIONS(3306), 1, anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + STATE(2813), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163594] = 3, - STATE(2797), 1, + [161658] = 4, + ACTIONS(4054), 1, + anon_sym_PIPE, + ACTIONS(4310), 1, + anon_sym_RBRACK, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [163606] = 3, - ACTIONS(4283), 1, + [161672] = 3, + ACTIONS(4312), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 2, + ACTIONS(1526), 2, anon_sym_RBRACK, anon_sym_PIPE, - [163618] = 4, - ACTIONS(4010), 1, + [161684] = 4, + ACTIONS(1519), 1, + anon_sym_RBRACK, + ACTIONS(4314), 1, anon_sym_PIPE, - ACTIONS(4285), 1, - anon_sym_COLON, - STATE(2626), 1, + STATE(2864), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163632] = 4, - ACTIONS(4043), 1, + [161698] = 4, + ACTIONS(4068), 1, anon_sym_PIPE, - ACTIONS(4287), 1, - anon_sym_RBRACK, - STATE(2797), 1, + ACTIONS(4317), 1, + anon_sym_RBRACE, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163646] = 4, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(4289), 1, - anon_sym_COMMA, - STATE(2703), 1, - aux_sym_dictionary_repeat1, + [161712] = 3, + STATE(2859), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163660] = 4, - ACTIONS(4291), 1, + ACTIONS(1503), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [161724] = 4, + ACTIONS(4319), 1, anon_sym_COMMA, - ACTIONS(4293), 1, + ACTIONS(4321), 1, anon_sym_RBRACK, - STATE(2795), 1, + STATE(2831), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163674] = 4, - ACTIONS(3907), 1, - anon_sym_RPAREN, - ACTIONS(4295), 1, + [161738] = 4, + ACTIONS(4323), 1, anon_sym_COMMA, - STATE(2843), 1, - aux_sym_function_type_repeat1, + ACTIONS(4325), 1, + anon_sym_RBRACK, + STATE(2831), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163688] = 4, - ACTIONS(3248), 1, - anon_sym_COMMA, - ACTIONS(3250), 1, + [161752] = 4, + ACTIONS(1040), 1, anon_sym_RPAREN, - STATE(2714), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [163702] = 4, - ACTIONS(3856), 1, + ACTIONS(4327), 1, anon_sym_COMMA, - ACTIONS(4298), 1, - anon_sym_RPAREN, - STATE(2843), 1, - aux_sym_function_type_repeat1, + STATE(2827), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163716] = 4, - ACTIONS(4043), 1, + [161766] = 4, + ACTIONS(3997), 1, anon_sym_PIPE, - ACTIONS(4300), 1, - anon_sym_RBRACK, - STATE(2797), 1, + ACTIONS(4329), 1, + anon_sym_COLON, + STATE(2663), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163730] = 4, - ACTIONS(2930), 1, + [161780] = 4, + ACTIONS(2940), 1, anon_sym_RBRACE, - ACTIONS(4065), 1, + ACTIONS(4068), 1, anon_sym_PIPE, - STATE(2850), 1, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163744] = 4, - ACTIONS(4065), 1, - anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_RBRACE, - STATE(2850), 1, - aux_sym_union_type_repeat1, + [161794] = 4, + ACTIONS(3876), 1, + anon_sym_COMMA, + ACTIONS(4331), 1, + anon_sym_RPAREN, + STATE(2852), 1, + aux_sym_function_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161808] = 3, + ACTIONS(4333), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163758] = 4, - ACTIONS(3340), 1, + ACTIONS(1503), 2, anon_sym_RBRACK, - ACTIONS(4304), 1, + anon_sym_PIPE, + [161820] = 4, + ACTIONS(3178), 1, anon_sym_COMMA, - STATE(2849), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3180), 1, + anon_sym_RBRACK, + STATE(2867), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161834] = 4, + ACTIONS(3250), 1, + anon_sym_COMMA, + ACTIONS(3252), 1, + anon_sym_RPAREN, + STATE(2869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163772] = 3, - STATE(2811), 1, + [161848] = 3, + STATE(2778), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1392), 2, + ACTIONS(1443), 2, anon_sym_RBRACE, anon_sym_PIPE, - [163784] = 4, - ACTIONS(4010), 1, - anon_sym_PIPE, - ACTIONS(4307), 1, - anon_sym_COLON, - STATE(2626), 1, + [161860] = 3, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163798] = 3, - STATE(2850), 1, + ACTIONS(1552), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [161872] = 3, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1273), 2, + ACTIONS(1519), 2, anon_sym_RBRACE, anon_sym_PIPE, - [163810] = 4, - ACTIONS(4065), 1, - anon_sym_PIPE, - ACTIONS(4309), 1, + [161884] = 4, + ACTIONS(706), 1, anon_sym_RBRACE, - STATE(2850), 1, - aux_sym_union_type_repeat1, + ACTIONS(4335), 1, + anon_sym_COMMA, + STATE(2800), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163824] = 3, - STATE(2850), 1, + [161898] = 3, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 2, + ACTIONS(1503), 2, anon_sym_RBRACE, anon_sym_PIPE, - [163836] = 3, - STATE(2850), 1, + [161910] = 3, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1414), 2, + ACTIONS(1552), 2, anon_sym_RBRACE, anon_sym_PIPE, - [163848] = 3, - STATE(2850), 1, + [161922] = 3, + STATE(2876), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1241), 2, + ACTIONS(1544), 2, anon_sym_RBRACE, anon_sym_PIPE, - [163860] = 4, - ACTIONS(4010), 1, + [161934] = 4, + ACTIONS(4054), 1, anon_sym_PIPE, - ACTIONS(4311), 1, - anon_sym_COLON, - STATE(2626), 1, + ACTIONS(4337), 1, + anon_sym_RBRACK, + STATE(2859), 1, aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163874] = 4, - ACTIONS(3814), 1, - anon_sym_COLON, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(4313), 1, - anon_sym_EQ, + [161948] = 3, + STATE(2859), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163888] = 3, - ACTIONS(4315), 1, + ACTIONS(1544), 2, + anon_sym_RBRACK, + anon_sym_PIPE, + [161960] = 3, + ACTIONS(4339), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1245), 2, + ACTIONS(1536), 2, anon_sym_RBRACE, anon_sym_PIPE, - [163900] = 3, - STATE(2797), 1, - aux_sym_union_type_repeat1, + [161972] = 4, + ACTIONS(708), 1, + anon_sym_RBRACE, + ACTIONS(4341), 1, + anon_sym_COMMA, + STATE(2800), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1241), 2, - anon_sym_RBRACK, - anon_sym_PIPE, - [163912] = 3, - ACTIONS(4317), 1, + [161986] = 3, + ACTIONS(4343), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1263), 2, + ACTIONS(1526), 2, anon_sym_RBRACE, anon_sym_PIPE, - [163924] = 4, - ACTIONS(4319), 1, + [161998] = 4, + ACTIONS(3831), 1, anon_sym_COMMA, - ACTIONS(4321), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + ACTIONS(3833), 1, + anon_sym_RBRACE, + STATE(2730), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163938] = 3, - ACTIONS(4323), 1, + [162012] = 3, + ACTIONS(4345), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 2, + ACTIONS(1503), 2, anon_sym_RBRACE, anon_sym_PIPE, - [163950] = 4, - ACTIONS(3240), 1, + [162024] = 4, + ACTIONS(3795), 1, anon_sym_COMMA, - ACTIONS(3242), 1, - anon_sym_RPAREN, - STATE(2788), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3797), 1, + anon_sym_RBRACE, + STATE(2796), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163964] = 4, - ACTIONS(4325), 1, - anon_sym_COMMA, - ACTIONS(4327), 1, - anon_sym_RBRACK, - STATE(2795), 1, - aux_sym_subscript_repeat1, + [162038] = 4, + ACTIONS(3997), 1, + anon_sym_PIPE, + ACTIONS(4347), 1, + anon_sym_COLON, + STATE(2663), 1, + aux_sym_union_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163978] = 2, + [162052] = 4, + ACTIONS(3843), 1, + anon_sym_COMMA, + ACTIONS(3845), 1, + anon_sym_RBRACE, + STATE(2886), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4329), 3, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [163988] = 4, - ACTIONS(1213), 1, - anon_sym_RPAREN, - ACTIONS(4331), 1, + [162066] = 4, + ACTIONS(3821), 1, anon_sym_COMMA, - STATE(2769), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3823), 1, + anon_sym_RBRACE, + STATE(2848), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164002] = 2, + [162080] = 4, + ACTIONS(3791), 1, + anon_sym_COMMA, + ACTIONS(3793), 1, + anon_sym_RBRACE, + STATE(2816), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4171), 3, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_for, - [164012] = 4, - ACTIONS(3196), 1, + [162094] = 4, + ACTIONS(3849), 1, anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_RBRACK, - STATE(2762), 1, - aux_sym_subscript_repeat1, + ACTIONS(3851), 1, + anon_sym_RBRACE, + STATE(2774), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164026] = 3, - ACTIONS(1591), 1, - anon_sym_RBRACK, - ACTIONS(4333), 1, - sym_identifier, + [162108] = 3, + ACTIONS(1038), 1, + sym_string_start, + STATE(1816), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164037] = 3, - ACTIONS(4335), 1, + [162119] = 3, + ACTIONS(4349), 1, anon_sym_LBRACE, - STATE(970), 1, + STATE(1870), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164048] = 2, + [162130] = 3, + ACTIONS(4349), 1, + anon_sym_LBRACE, + STATE(1900), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3340), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [164057] = 3, - ACTIONS(4337), 1, + [162141] = 3, + ACTIONS(4351), 1, anon_sym_if, - ACTIONS(4339), 1, + ACTIONS(4353), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164068] = 3, - ACTIONS(4341), 1, + [162152] = 3, + ACTIONS(1983), 1, anon_sym_LBRACE, - STATE(1109), 1, + STATE(1234), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164079] = 3, - ACTIONS(4343), 1, + [162163] = 3, + ACTIONS(4355), 1, anon_sym_if, - ACTIONS(4345), 1, + ACTIONS(4357), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164090] = 3, - ACTIONS(4347), 1, + [162174] = 3, + ACTIONS(4359), 1, anon_sym_if, - ACTIONS(4349), 1, + ACTIONS(4361), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164101] = 3, - ACTIONS(1969), 1, - anon_sym_LBRACE, - STATE(1333), 1, - sym_dict_expr, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164112] = 3, - ACTIONS(2007), 1, - anon_sym_LBRACE, - STATE(1671), 1, - sym_dict_expr, + [162185] = 3, + ACTIONS(4363), 1, + anon_sym_if, + ACTIONS(4365), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164123] = 3, - ACTIONS(4351), 1, + [162196] = 3, + ACTIONS(4367), 1, anon_sym_if, - ACTIONS(4353), 1, + ACTIONS(4369), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164134] = 3, - ACTIONS(4355), 1, + [162207] = 3, + ACTIONS(4371), 1, anon_sym_if, - ACTIONS(4357), 1, + ACTIONS(4373), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164145] = 2, + [162218] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4039), 2, + ACTIONS(4375), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [164154] = 3, - ACTIONS(1873), 1, + anon_sym_RBRACK, + [162227] = 3, + ACTIONS(4377), 1, anon_sym_LBRACE, - STATE(1821), 1, + STATE(930), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164165] = 3, - ACTIONS(4335), 1, + [162238] = 3, + ACTIONS(4377), 1, anon_sym_LBRACE, - STATE(988), 1, + STATE(967), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164176] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4359), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [164185] = 3, - ACTIONS(4361), 1, - anon_sym_if, - ACTIONS(4363), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164196] = 3, - ACTIONS(4365), 1, + [162249] = 3, + ACTIONS(4379), 1, anon_sym_if, - ACTIONS(4367), 1, + ACTIONS(4381), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164207] = 3, - ACTIONS(4369), 1, + [162260] = 3, + ACTIONS(4383), 1, anon_sym_if, - ACTIONS(4371), 1, + ACTIONS(4385), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164218] = 3, - ACTIONS(2093), 1, - anon_sym_LBRACE, - STATE(2003), 1, - sym_dict_expr, + [162271] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164229] = 3, - ACTIONS(1979), 1, + ACTIONS(3320), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162280] = 3, + ACTIONS(1973), 1, anon_sym_LBRACE, - STATE(1274), 1, + STATE(1352), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164240] = 3, - ACTIONS(971), 1, - sym_string_start, - STATE(1795), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164251] = 3, - ACTIONS(4373), 1, - anon_sym_if, - ACTIONS(4375), 1, - anon_sym_RBRACE, + [162291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164262] = 3, - ACTIONS(4377), 1, - anon_sym_DASH_GT, - ACTIONS(4379), 1, + ACTIONS(3362), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162300] = 3, + ACTIONS(1881), 1, anon_sym_LBRACE, + STATE(1852), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164273] = 3, - ACTIONS(4381), 1, - anon_sym_if, - ACTIONS(4383), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164284] = 3, - ACTIONS(4341), 1, + [162311] = 3, + ACTIONS(1983), 1, anon_sym_LBRACE, - STATE(1113), 1, + STATE(1242), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164295] = 3, - ACTIONS(4385), 1, - anon_sym_as, - ACTIONS(4387), 1, - sym__newline, + [162322] = 3, + ACTIONS(1161), 1, + sym_string_start, + STATE(1770), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164306] = 2, + [162333] = 3, + ACTIONS(4387), 1, + anon_sym_DASH_GT, + ACTIONS(4389), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3296), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [164315] = 3, - ACTIONS(1113), 1, - sym_string_start, - STATE(1714), 1, - sym_string, + [162344] = 3, + ACTIONS(4391), 1, + anon_sym_LBRACE, + STATE(1129), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164326] = 3, - ACTIONS(4389), 1, + [162355] = 3, + ACTIONS(1973), 1, anon_sym_LBRACE, - STATE(975), 1, + STATE(1335), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164337] = 3, + [162366] = 3, ACTIONS(4391), 1, - anon_sym_if, + anon_sym_LBRACE, + STATE(1138), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162377] = 3, ACTIONS(4393), 1, + anon_sym_if, + ACTIONS(4395), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164348] = 2, + [162388] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3350), 2, + ACTIONS(4192), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [164357] = 3, - ACTIONS(4395), 1, - anon_sym_LBRACE, - STATE(1918), 1, - sym_dict_expr, + anon_sym_RBRACE, + [162397] = 3, + ACTIONS(4397), 1, + anon_sym_if, + ACTIONS(4399), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164368] = 3, - ACTIONS(4397), 1, - anon_sym_DASH_GT, - ACTIONS(4399), 1, - anon_sym_LBRACE, + [162408] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3360), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162417] = 3, + ACTIONS(1038), 1, + sym_string_start, + STATE(1749), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164379] = 3, + [162428] = 3, ACTIONS(4401), 1, - anon_sym_DASH_GT, + anon_sym_if, ACTIONS(4403), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162439] = 3, + ACTIONS(1881), 1, anon_sym_LBRACE, + STATE(1863), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164390] = 3, + [162450] = 3, ACTIONS(4405), 1, - anon_sym_DASH_GT, + anon_sym_if, ACTIONS(4407), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164401] = 3, + [162461] = 3, ACTIONS(4409), 1, anon_sym_DASH_GT, ACTIONS(4411), 1, @@ -158134,7 +159870,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164412] = 3, + [162472] = 3, ACTIONS(4413), 1, anon_sym_DASH_GT, ACTIONS(4415), 1, @@ -158142,31 +159878,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164423] = 3, - ACTIONS(4389), 1, - anon_sym_LBRACE, - STATE(959), 1, - sym_dict_expr, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164434] = 3, + [162483] = 3, ACTIONS(4417), 1, - anon_sym_if, + anon_sym_DASH_GT, ACTIONS(4419), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164445] = 3, + [162494] = 3, ACTIONS(4421), 1, - anon_sym_if, + anon_sym_DASH_GT, ACTIONS(4423), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164456] = 3, + [162505] = 3, ACTIONS(4425), 1, anon_sym_DASH_GT, ACTIONS(4427), 1, @@ -158174,159 +159902,135 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164467] = 3, + [162516] = 3, ACTIONS(4429), 1, - anon_sym_DASH_GT, - ACTIONS(4431), 1, anon_sym_LBRACE, + STATE(1009), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164478] = 3, - ACTIONS(971), 1, - sym_string_start, - STATE(1728), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164489] = 3, - ACTIONS(4433), 1, - anon_sym_if, - ACTIONS(4435), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164500] = 3, - ACTIONS(2093), 1, + [162527] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(1955), 1, + STATE(2037), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164511] = 3, - ACTIONS(4437), 1, + [162538] = 3, + ACTIONS(4431), 1, anon_sym_DASH_GT, - ACTIONS(4439), 1, + ACTIONS(4433), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164522] = 3, - ACTIONS(4441), 1, - anon_sym_COMMA, - ACTIONS(4443), 1, - anon_sym_in, + [162549] = 3, + ACTIONS(4435), 1, + anon_sym_DASH_GT, + ACTIONS(4437), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164533] = 3, - ACTIONS(4395), 1, + [162560] = 3, + ACTIONS(4429), 1, anon_sym_LBRACE, - STATE(1912), 1, + STATE(950), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164544] = 3, - ACTIONS(4445), 1, - anon_sym_if, - ACTIONS(4447), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164555] = 3, - ACTIONS(4385), 1, + [162571] = 3, + ACTIONS(4439), 1, anon_sym_as, - ACTIONS(4449), 1, + ACTIONS(4441), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164566] = 3, - ACTIONS(4451), 1, + [162582] = 3, + ACTIONS(4443), 1, anon_sym_if, - ACTIONS(4453), 1, + ACTIONS(4445), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164577] = 3, - ACTIONS(4455), 1, + [162593] = 3, + ACTIONS(4447), 1, anon_sym_if, - ACTIONS(4457), 1, + ACTIONS(4449), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164588] = 3, - ACTIONS(1113), 1, + [162604] = 3, + ACTIONS(1161), 1, sym_string_start, - STATE(1668), 1, + STATE(1634), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164599] = 3, - ACTIONS(1873), 1, - anon_sym_LBRACE, - STATE(1893), 1, - sym_dict_expr, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164610] = 3, - ACTIONS(2007), 1, + [162615] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(1648), 1, + STATE(2032), 1, sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164621] = 3, - ACTIONS(4459), 1, + [162626] = 3, + ACTIONS(4451), 1, anon_sym_COMMA, - ACTIONS(4461), 1, + ACTIONS(4453), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164632] = 3, - ACTIONS(1969), 1, - anon_sym_LBRACE, - STATE(1307), 1, - sym_dict_expr, + [162637] = 3, + ACTIONS(4455), 1, + anon_sym_if, + ACTIONS(4457), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164643] = 3, - ACTIONS(1979), 1, + [162648] = 3, + ACTIONS(4459), 1, + anon_sym_DASH_GT, + ACTIONS(4461), 1, anon_sym_LBRACE, - STATE(1228), 1, - sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164654] = 3, + [162659] = 3, + ACTIONS(1599), 1, + anon_sym_RBRACK, ACTIONS(4463), 1, - anon_sym_COMMA, - ACTIONS(4465), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164665] = 3, + [162670] = 3, + ACTIONS(4465), 1, + anon_sym_if, ACTIONS(4467), 1, - anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162681] = 3, + ACTIONS(4439), 1, + anon_sym_as, ACTIONS(4469), 1, - anon_sym_in, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164676] = 3, + [162692] = 3, ACTIONS(4471), 1, anon_sym_COMMA, ACTIONS(4473), 1, @@ -158334,7 +160038,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164687] = 3, + [162703] = 3, + ACTIONS(2013), 1, + anon_sym_LBRACE, + STATE(1767), 1, + sym_dict_expr, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162714] = 3, ACTIONS(4475), 1, anon_sym_COMMA, ACTIONS(4477), 1, @@ -158342,7 +160054,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164698] = 3, + [162725] = 3, ACTIONS(4479), 1, anon_sym_COMMA, ACTIONS(4481), 1, @@ -158350,23 +160062,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164709] = 3, + [162736] = 3, ACTIONS(4483), 1, - anon_sym_COMMA, + anon_sym_if, ACTIONS(4485), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164720] = 3, + [162747] = 3, ACTIONS(4487), 1, - anon_sym_if, + anon_sym_COMMA, ACTIONS(4489), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164731] = 3, + [162758] = 3, ACTIONS(4491), 1, anon_sym_COMMA, ACTIONS(4493), 1, @@ -158374,5067 +160086,5088 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164742] = 2, + [162769] = 3, ACTIONS(4495), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164750] = 2, + anon_sym_COMMA, ACTIONS(4497), 1, - anon_sym_DQUOTE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164758] = 2, - ACTIONS(4499), 1, - sym_identifier, + [162780] = 3, + ACTIONS(2013), 1, + anon_sym_LBRACE, + STATE(1833), 1, + sym_dict_expr, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164766] = 2, + [162791] = 3, + ACTIONS(4499), 1, + anon_sym_COMMA, ACTIONS(4501), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164774] = 2, - ACTIONS(4503), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164782] = 2, - ACTIONS(4449), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164790] = 2, + [162802] = 3, + ACTIONS(4503), 1, + anon_sym_COMMA, ACTIONS(4505), 1, - sym__newline, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164798] = 2, + [162813] = 3, ACTIONS(4507), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164806] = 2, + anon_sym_if, ACTIONS(4509), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164814] = 2, - ACTIONS(3092), 1, - anon_sym_RBRACE, + [162824] = 2, + ACTIONS(3382), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164822] = 2, + [162832] = 2, ACTIONS(4511), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164830] = 2, + [162840] = 2, ACTIONS(4513), 1, - sym__newline, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164838] = 2, + [162848] = 2, ACTIONS(4515), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164846] = 2, - ACTIONS(3274), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164854] = 2, - ACTIONS(3278), 1, + [162856] = 2, + ACTIONS(4517), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164862] = 2, - ACTIONS(2223), 1, - anon_sym_RBRACE, + [162864] = 2, + ACTIONS(4519), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164870] = 2, - ACTIONS(3222), 1, + [162872] = 2, + ACTIONS(3238), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164878] = 2, - ACTIONS(3780), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164886] = 2, - ACTIONS(4517), 1, + [162880] = 2, + ACTIONS(4521), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164894] = 2, - ACTIONS(4519), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164902] = 2, - ACTIONS(4521), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [164910] = 2, + [162888] = 2, ACTIONS(4523), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164918] = 2, + [162896] = 2, ACTIONS(4525), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164926] = 2, + [162904] = 2, ACTIONS(4527), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164934] = 2, + [162912] = 2, ACTIONS(4529), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [164942] = 2, - ACTIONS(2291), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164950] = 2, + [162920] = 2, ACTIONS(4531), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164958] = 2, + [162928] = 2, ACTIONS(4533), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164966] = 2, + [162936] = 2, ACTIONS(4535), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164974] = 2, + [162944] = 2, ACTIONS(4537), 1, - sym_identifier, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162952] = 2, + ACTIONS(3090), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162960] = 2, + ACTIONS(3833), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164982] = 2, + [162968] = 2, ACTIONS(4539), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164990] = 2, + [162976] = 2, ACTIONS(4541), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164998] = 2, + [162984] = 2, ACTIONS(4543), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165006] = 2, + [162992] = 2, ACTIONS(4545), 1, - sym_identifier, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165014] = 2, + [163000] = 2, ACTIONS(4547), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165022] = 2, + [163008] = 2, ACTIONS(4549), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165030] = 2, + [163016] = 2, ACTIONS(4551), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165038] = 2, + [163024] = 2, ACTIONS(4553), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165046] = 2, + [163032] = 2, ACTIONS(4555), 1, - sym__newline, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165054] = 2, + [163040] = 2, ACTIONS(4557), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165062] = 2, + [163048] = 2, ACTIONS(4559), 1, - anon_sym_for, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165070] = 2, + [163056] = 2, ACTIONS(4561), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163064] = 2, + ACTIONS(3298), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165078] = 2, + [163072] = 2, ACTIONS(4563), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165086] = 2, + [163080] = 2, ACTIONS(4565), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165094] = 2, + [163088] = 2, ACTIONS(4567), 1, - sym_identifier, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163096] = 2, + ACTIONS(3797), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165102] = 2, + [163104] = 2, ACTIONS(4569), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165110] = 2, + [163112] = 2, ACTIONS(4571), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165118] = 2, + [163120] = 2, ACTIONS(4573), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165126] = 2, + [163128] = 2, ACTIONS(4575), 1, - anon_sym_COLON, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163136] = 2, + ACTIONS(3098), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165134] = 2, + [163144] = 2, ACTIONS(4577), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165142] = 2, + [163152] = 2, ACTIONS(4579), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165150] = 2, + [163160] = 2, ACTIONS(4581), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165158] = 2, - ACTIONS(4583), 1, - anon_sym_RBRACK, + [163168] = 2, + ACTIONS(3096), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165166] = 2, - ACTIONS(4585), 1, - anon_sym_RPAREN, + [163176] = 2, + ACTIONS(3829), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165174] = 2, - ACTIONS(3774), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + [163184] = 2, + ACTIONS(4583), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165182] = 2, - ACTIONS(4587), 1, - anon_sym_RBRACE, + [163192] = 2, + ACTIONS(4585), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165190] = 2, - ACTIONS(4589), 1, - anon_sym_COLON, + [163200] = 2, + ACTIONS(4587), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165198] = 2, - ACTIONS(3494), 1, - sym__newline, + [163208] = 2, + ACTIONS(4589), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165206] = 2, + [163216] = 2, ACTIONS(4591), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165214] = 2, + [163224] = 2, ACTIONS(4593), 1, - sym_identifier, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165222] = 2, + [163232] = 2, ACTIONS(4595), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165230] = 2, + [163240] = 2, ACTIONS(4597), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165238] = 2, + [163248] = 2, ACTIONS(4599), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165246] = 2, + [163256] = 2, ACTIONS(4601), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165254] = 2, - ACTIONS(3246), 1, - anon_sym_RPAREN, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165262] = 2, + [163264] = 2, ACTIONS(4603), 1, - anon_sym_RBRACK, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165270] = 2, + [163272] = 2, ACTIONS(4605), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165278] = 2, + [163280] = 2, ACTIONS(4607), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165286] = 2, + [163288] = 2, ACTIONS(4609), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165294] = 2, - ACTIONS(2026), 1, - anon_sym_COLON, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165302] = 2, + [163296] = 2, ACTIONS(4611), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165310] = 2, + [163304] = 2, ACTIONS(4613), 1, - sym__newline, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165318] = 2, + [163312] = 2, ACTIONS(4615), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165326] = 2, + [163320] = 2, ACTIONS(4617), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165334] = 2, + [163328] = 2, ACTIONS(4619), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165342] = 2, + [163336] = 2, ACTIONS(4621), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165350] = 2, + [163344] = 2, + ACTIONS(3326), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163352] = 2, ACTIONS(4623), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165358] = 2, + [163360] = 2, ACTIONS(4625), 1, - sym__newline, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165366] = 2, + [163368] = 2, ACTIONS(4627), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165374] = 2, + [163376] = 2, ACTIONS(4629), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165382] = 2, + [163384] = 2, ACTIONS(4631), 1, - sym_identifier, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165390] = 2, + [163392] = 2, ACTIONS(4633), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165398] = 2, - ACTIONS(3338), 1, - sym__newline, + [163400] = 2, + ACTIONS(4635), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165406] = 2, - ACTIONS(4635), 1, - anon_sym_RBRACK, + [163408] = 2, + ACTIONS(3306), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165414] = 2, + [163416] = 2, ACTIONS(4637), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165422] = 2, + [163424] = 2, ACTIONS(4639), 1, - sym__newline, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165430] = 2, + [163432] = 2, ACTIONS(4641), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165438] = 2, + [163440] = 2, ACTIONS(4643), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165446] = 2, + [163448] = 2, ACTIONS(4645), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165454] = 2, - ACTIONS(4647), 1, - anon_sym_COLON, + [163456] = 2, + ACTIONS(3845), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165462] = 2, - ACTIONS(3242), 1, - anon_sym_RPAREN, + [163464] = 2, + ACTIONS(4647), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165470] = 2, + [163472] = 2, ACTIONS(4649), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_RBRACK, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165478] = 2, + [163480] = 2, ACTIONS(4651), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165486] = 2, + [163488] = 2, ACTIONS(4653), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165494] = 2, + [163496] = 2, ACTIONS(4655), 1, - ts_builtin_sym_end, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163504] = 2, + ACTIONS(3080), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165502] = 2, + [163512] = 2, ACTIONS(4657), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165510] = 2, + [163520] = 2, ACTIONS(4659), 1, - sym__newline, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165518] = 2, + [163528] = 2, ACTIONS(4661), 1, - anon_sym_in, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165526] = 2, - ACTIONS(4663), 1, + [163536] = 2, + ACTIONS(3108), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163544] = 2, + ACTIONS(3801), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165534] = 2, + [163552] = 2, + ACTIONS(4663), 1, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [163560] = 2, ACTIONS(4665), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165542] = 2, - ACTIONS(4667), 1, + [163568] = 2, + ACTIONS(3518), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165550] = 2, + [163576] = 2, + ACTIONS(4667), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163584] = 2, ACTIONS(4669), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + sym_identifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165558] = 2, + [163592] = 2, ACTIONS(4671), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165566] = 2, + [163600] = 2, ACTIONS(4673), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165574] = 2, + [163608] = 2, ACTIONS(4675), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165582] = 2, + [163616] = 2, ACTIONS(4677), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165590] = 2, + [163624] = 2, ACTIONS(4679), 1, - sym__newline, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165598] = 2, + [163632] = 2, ACTIONS(4681), 1, - anon_sym_DQUOTE, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163640] = 2, + ACTIONS(3186), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165606] = 2, + [163648] = 2, ACTIONS(4683), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165614] = 2, + [163656] = 2, ACTIONS(4685), 1, - sym__newline, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163664] = 2, + ACTIONS(3252), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165622] = 2, + [163672] = 2, ACTIONS(4687), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165630] = 2, + [163680] = 2, ACTIONS(4689), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165638] = 2, + [163688] = 2, ACTIONS(4691), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163696] = 2, + ACTIONS(4693), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163704] = 2, + ACTIONS(4695), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163712] = 2, + ACTIONS(4697), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163720] = 2, + ACTIONS(4699), 1, aux_sym_string_literal_expr_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165646] = 2, - ACTIONS(4693), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165654] = 2, - ACTIONS(4695), 1, + [163728] = 2, + ACTIONS(2229), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165662] = 2, - ACTIONS(4697), 1, - anon_sym_RBRACK, + [163736] = 2, + ACTIONS(3823), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165670] = 2, - ACTIONS(4699), 1, - anon_sym_in, + [163744] = 2, + ACTIONS(2287), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165678] = 2, - ACTIONS(2270), 1, + [163752] = 2, + ACTIONS(3074), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165686] = 2, + [163760] = 2, ACTIONS(4701), 1, - sym_identifier, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165694] = 2, + [163768] = 2, ACTIONS(4703), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165702] = 2, + [163776] = 2, ACTIONS(4705), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165710] = 2, + [163784] = 2, ACTIONS(4707), 1, - anon_sym_COLON, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163792] = 2, + ACTIONS(2243), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165718] = 2, + [163800] = 2, ACTIONS(4709), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165726] = 2, + [163808] = 2, ACTIONS(4711), 1, - sym_identifier, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165734] = 2, + [163816] = 2, ACTIONS(4713), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165742] = 2, + [163824] = 2, ACTIONS(4715), 1, - sym_identifier, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165750] = 2, + [163832] = 2, ACTIONS(4717), 1, - anon_sym_in, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165758] = 2, + [163840] = 2, ACTIONS(4719), 1, - sym_integer, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165766] = 2, - ACTIONS(3086), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165774] = 2, + [163848] = 2, ACTIONS(4721), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165782] = 2, + [163856] = 2, ACTIONS(4723), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165790] = 2, + [163864] = 2, ACTIONS(4725), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165798] = 2, + [163872] = 2, ACTIONS(4727), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165806] = 2, + [163880] = 2, ACTIONS(4729), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + sym__newline, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165814] = 2, + [163888] = 2, ACTIONS(4731), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [165822] = 2, + [163896] = 2, ACTIONS(4733), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165830] = 2, - ACTIONS(4735), 1, - sym_identifier, + [163904] = 2, + ACTIONS(3330), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165838] = 2, - ACTIONS(4737), 1, - sym_identifier, + [163912] = 2, + ACTIONS(4735), 1, + sym_integer, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165846] = 2, - ACTIONS(3078), 1, - anon_sym_RBRACE, + [163920] = 2, + ACTIONS(4737), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165854] = 2, + [163928] = 2, ACTIONS(4739), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165862] = 2, + [163936] = 2, ACTIONS(4741), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165870] = 2, + [163944] = 2, ACTIONS(4743), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165878] = 2, + [163952] = 2, ACTIONS(4745), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165886] = 2, - ACTIONS(4333), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165894] = 2, + [163960] = 2, ACTIONS(4747), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165902] = 2, + [163968] = 2, ACTIONS(4749), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165910] = 2, + [163976] = 2, ACTIONS(4751), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165918] = 2, - ACTIONS(3080), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165926] = 2, + [163984] = 2, ACTIONS(4753), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165934] = 2, - ACTIONS(3306), 1, - anon_sym_RPAREN, + [163992] = 2, + ACTIONS(4755), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165942] = 2, - ACTIONS(3745), 1, + [164000] = 2, + ACTIONS(3793), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165950] = 2, - ACTIONS(3842), 1, + [164008] = 2, + ACTIONS(4757), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165958] = 2, - ACTIONS(4755), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165966] = 2, - ACTIONS(4757), 1, + [164016] = 2, + ACTIONS(3082), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165974] = 2, + [164024] = 2, ACTIONS(4759), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165982] = 2, - ACTIONS(3834), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165990] = 2, + [164032] = 2, ACTIONS(4761), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165998] = 2, + [164040] = 2, ACTIONS(4763), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166006] = 2, - ACTIONS(3250), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166014] = 2, + [164048] = 2, ACTIONS(4765), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166022] = 2, - ACTIONS(3058), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166030] = 2, + [164056] = 2, ACTIONS(4767), 1, - sym_identifier, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166038] = 2, + [164064] = 2, ACTIONS(4769), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166046] = 2, + [164072] = 2, ACTIONS(4771), 1, - sym__newline, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166054] = 2, + [164080] = 2, ACTIONS(4773), 1, - anon_sym_DQUOTE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166062] = 2, + [164088] = 2, ACTIONS(4775), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166070] = 2, + [164096] = 2, ACTIONS(4777), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166078] = 2, + [164104] = 2, ACTIONS(4779), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166086] = 2, + [164112] = 2, ACTIONS(4781), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166094] = 2, + [164120] = 2, ACTIONS(4783), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166102] = 2, + [164128] = 2, ACTIONS(4785), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166110] = 2, + [164136] = 2, ACTIONS(4787), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166118] = 2, + [164144] = 2, ACTIONS(4789), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166126] = 2, + [164152] = 2, ACTIONS(4791), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166134] = 2, + [164160] = 2, ACTIONS(4793), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166142] = 2, + [164168] = 2, ACTIONS(4795), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166150] = 2, + [164176] = 2, ACTIONS(4797), 1, - anon_sym_COLON, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164184] = 2, + ACTIONS(3290), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166158] = 2, + [164192] = 2, ACTIONS(4799), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166166] = 2, + [164200] = 2, ACTIONS(4801), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166174] = 2, + [164208] = 2, ACTIONS(4803), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166182] = 2, + [164216] = 2, ACTIONS(4805), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166190] = 2, + [164224] = 2, ACTIONS(4807), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166198] = 2, + [164232] = 2, ACTIONS(4809), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166206] = 2, + [164240] = 2, ACTIONS(4811), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166214] = 2, + [164248] = 2, ACTIONS(4813), 1, - anon_sym_in, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166222] = 2, + [164256] = 2, ACTIONS(4815), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166230] = 2, + [164264] = 2, ACTIONS(4817), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166238] = 2, + [164272] = 2, ACTIONS(4819), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166246] = 2, + [164280] = 2, ACTIONS(4821), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166254] = 2, - ACTIONS(3204), 1, - sym__newline, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166262] = 2, + [164288] = 2, ACTIONS(4823), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166270] = 2, + [164296] = 2, ACTIONS(4825), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166278] = 2, - ACTIONS(4827), 1, - anon_sym_RBRACE, + [164304] = 2, + ACTIONS(2030), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166286] = 2, - ACTIONS(4829), 1, - anon_sym_RBRACE, + [164312] = 2, + ACTIONS(4827), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166294] = 2, - ACTIONS(3254), 1, - anon_sym_RPAREN, + [164320] = 2, + ACTIONS(4829), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166302] = 2, - ACTIONS(3050), 1, - anon_sym_RBRACE, + [164328] = 2, + ACTIONS(4831), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166310] = 2, - ACTIONS(4831), 1, - anon_sym_COLON, + [164336] = 2, + ACTIONS(4833), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166318] = 2, - ACTIONS(4833), 1, - sym_identifier, + [164344] = 2, + ACTIONS(3851), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166326] = 2, + [164352] = 2, ACTIONS(4835), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166334] = 2, + [164360] = 2, ACTIONS(4837), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166342] = 2, + [164368] = 2, ACTIONS(4839), 1, - anon_sym_RBRACE, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166350] = 2, + [164376] = 2, ACTIONS(4841), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166358] = 2, - ACTIONS(4387), 1, - sym__newline, + [164384] = 2, + ACTIONS(4843), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166366] = 2, - ACTIONS(4843), 1, - anon_sym_COLON, + [164392] = 2, + ACTIONS(3092), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166374] = 2, - ACTIONS(3324), 1, - sym__newline, + [164400] = 2, + ACTIONS(4845), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166382] = 2, - ACTIONS(4845), 1, - sym_identifier, + [164408] = 2, + ACTIONS(3316), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166390] = 2, + [164416] = 2, ACTIONS(4847), 1, - anon_sym_in, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166398] = 2, + [164424] = 2, ACTIONS(4849), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166406] = 2, + [164432] = 2, ACTIONS(4851), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166414] = 2, + [164440] = 2, ACTIONS(4853), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166422] = 2, + [164448] = 2, ACTIONS(4855), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166430] = 2, + [164456] = 2, ACTIONS(4857), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166438] = 2, - ACTIONS(3770), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166446] = 2, + [164464] = 2, ACTIONS(4859), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166454] = 2, + [164472] = 2, ACTIONS(4861), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166462] = 2, + [164480] = 2, ACTIONS(4863), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166470] = 2, + [164488] = 2, ACTIONS(4865), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166478] = 2, + [164496] = 2, ACTIONS(4867), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166486] = 2, + [164504] = 2, ACTIONS(4869), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166494] = 2, + [164512] = 2, ACTIONS(4871), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166502] = 2, + [164520] = 2, ACTIONS(4873), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166510] = 2, + [164528] = 2, ACTIONS(4875), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166518] = 2, - ACTIONS(3830), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166526] = 2, + [164536] = 2, ACTIONS(4877), 1, - anon_sym_LBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166534] = 2, + [164544] = 2, ACTIONS(4879), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166542] = 2, + [164552] = 2, ACTIONS(4881), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166550] = 2, + [164560] = 2, ACTIONS(4883), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166558] = 2, + [164568] = 2, ACTIONS(4885), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166566] = 2, + [164576] = 2, ACTIONS(4887), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166574] = 2, + [164584] = 2, ACTIONS(4889), 1, - anon_sym_COLON, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166582] = 2, + [164592] = 2, ACTIONS(4891), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166590] = 2, + [164600] = 2, ACTIONS(4893), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166598] = 2, + [164608] = 2, ACTIONS(4895), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166606] = 2, - ACTIONS(3062), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166614] = 2, + [164616] = 2, ACTIONS(4897), 1, - anon_sym_in, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166622] = 2, + [164624] = 2, ACTIONS(4899), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166630] = 2, + [164632] = 2, ACTIONS(4901), 1, - anon_sym_LBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166638] = 2, + [164640] = 2, ACTIONS(4903), 1, - aux_sym_string_literal_expr_token1, - ACTIONS(5), 2, + anon_sym_LBRACE, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166646] = 2, + [164648] = 2, ACTIONS(4905), 1, - anon_sym_COLON, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166654] = 2, + [164656] = 2, ACTIONS(4907), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166662] = 2, + [164664] = 2, ACTIONS(4909), 1, - anon_sym_LBRACE, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166670] = 2, + [164672] = 2, ACTIONS(4911), 1, - sym_identifier, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166678] = 2, + [164680] = 2, ACTIONS(4913), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166686] = 2, + [164688] = 2, ACTIONS(4915), 1, - anon_sym_for, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [166694] = 2, + [164696] = 2, ACTIONS(4917), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166702] = 2, + [164704] = 2, ACTIONS(4919), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166710] = 2, + [164712] = 2, ACTIONS(4921), 1, - anon_sym_DQUOTE, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164720] = 2, + ACTIONS(3294), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166718] = 2, + [164728] = 2, ACTIONS(4923), 1, - anon_sym_RBRACE, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166726] = 2, + [164736] = 2, ACTIONS(4925), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166734] = 2, + [164744] = 2, ACTIONS(4927), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166742] = 2, + [164752] = 2, ACTIONS(4929), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166750] = 2, + [164760] = 2, ACTIONS(4931), 1, - anon_sym_in, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166758] = 2, + [164768] = 2, ACTIONS(4933), 1, - sym_identifier, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166766] = 2, + [164776] = 2, ACTIONS(4935), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166774] = 2, - ACTIONS(3288), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166782] = 2, + [164784] = 2, ACTIONS(4937), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166790] = 2, + [164792] = 2, ACTIONS(4939), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166798] = 2, + [164800] = 2, ACTIONS(4941), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166806] = 2, + [164808] = 2, ACTIONS(4943), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166814] = 2, + [164816] = 2, ACTIONS(4945), 1, - anon_sym_LBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166822] = 2, + [164824] = 2, ACTIONS(4947), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166830] = 2, + [164832] = 2, ACTIONS(4949), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166838] = 2, + [164840] = 2, ACTIONS(4951), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166846] = 2, + [164848] = 2, ACTIONS(4953), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166854] = 2, + [164856] = 2, ACTIONS(4955), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166862] = 2, + [164864] = 2, ACTIONS(4957), 1, - anon_sym_RBRACE, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164872] = 2, + ACTIONS(4441), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166870] = 2, + [164880] = 2, ACTIONS(4959), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166878] = 2, + [164888] = 2, ACTIONS(4961), 1, - anon_sym_RBRACE, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164896] = 2, + ACTIONS(4463), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166886] = 2, + [164904] = 2, ACTIONS(4963), 1, - anon_sym_RBRACK, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166894] = 2, + [164912] = 2, ACTIONS(4965), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166902] = 2, + [164920] = 2, ACTIONS(4967), 1, - sym_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166910] = 2, + [164928] = 2, ACTIONS(4969), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166918] = 2, + [164936] = 2, ACTIONS(4971), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166926] = 2, + [164944] = 2, ACTIONS(4973), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166934] = 2, + [164952] = 2, ACTIONS(4975), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166942] = 2, + [164960] = 2, ACTIONS(4977), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166950] = 2, + [164968] = 2, ACTIONS(4979), 1, - anon_sym_in, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166958] = 2, + [164976] = 2, ACTIONS(4981), 1, - anon_sym_in, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166966] = 2, + [164984] = 2, ACTIONS(4983), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166974] = 2, + [164992] = 2, ACTIONS(4985), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166982] = 2, + [165000] = 2, ACTIONS(4987), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166990] = 2, - ACTIONS(4989), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166998] = 2, - ACTIONS(3755), 1, + [165008] = 2, + ACTIONS(3094), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167006] = 2, - ACTIONS(4991), 1, - anon_sym_in, + [165016] = 2, + ACTIONS(3839), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167014] = 2, - ACTIONS(4993), 1, - anon_sym_in, + [165024] = 2, + ACTIONS(4989), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167022] = 2, - ACTIONS(4995), 1, - sym_identifier, + [165032] = 2, + ACTIONS(4991), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167030] = 2, - ACTIONS(4997), 1, - anon_sym_DQUOTE, + [165040] = 2, + ACTIONS(4993), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167038] = 2, - ACTIONS(4999), 1, - sym_identifier, + [165048] = 2, + ACTIONS(4995), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167046] = 2, - ACTIONS(3072), 1, + [165056] = 2, + ACTIONS(4997), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167054] = 2, - ACTIONS(5001), 1, + [165064] = 2, + ACTIONS(4999), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167062] = 2, - ACTIONS(5003), 1, + [165072] = 2, + ACTIONS(5001), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167070] = 2, - ACTIONS(3068), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [167078] = 2, - ACTIONS(2019), 1, - anon_sym_COLON, + [165080] = 2, + ACTIONS(4469), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167086] = 2, - ACTIONS(3759), 1, - anon_sym_RBRACE, + [165088] = 2, + ACTIONS(5003), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167094] = 2, + [165096] = 2, ACTIONS(5005), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167102] = 2, + [165104] = 2, ACTIONS(5007), 1, - anon_sym_LBRACE, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165112] = 2, + ACTIONS(3398), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167110] = 2, + [165120] = 2, ACTIONS(5009), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167118] = 2, + [165128] = 2, ACTIONS(5011), 1, - anon_sym_in, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167126] = 2, + [165136] = 2, ACTIONS(5013), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167134] = 2, + [165144] = 2, ACTIONS(5015), 1, - anon_sym_in, - ACTIONS(3), 2, + aux_sym_string_literal_expr_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [167142] = 2, + [165152] = 2, ACTIONS(5017), 1, - anon_sym_in, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165160] = 2, + ACTIONS(2011), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167150] = 2, + [165168] = 2, ACTIONS(5019), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167158] = 2, + [165176] = 2, ACTIONS(5021), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167166] = 2, + [165184] = 2, ACTIONS(5023), 1, - anon_sym_in, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167174] = 2, - ACTIONS(3), 1, - sym_comment, + [165192] = 2, ACTIONS(5025), 1, - sym_line_continuation, - [167181] = 2, - ACTIONS(3), 1, + sym_identifier, + ACTIONS(3), 2, sym_comment, - ACTIONS(5027), 1, sym_line_continuation, - [167188] = 2, - ACTIONS(3), 1, + [165200] = 2, + ACTIONS(5027), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(5029), 1, sym_line_continuation, - [167195] = 2, - ACTIONS(3), 1, + [165208] = 2, + ACTIONS(5029), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(5031), 1, sym_line_continuation, - [167202] = 2, - ACTIONS(3), 1, + [165216] = 2, + ACTIONS(5031), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(5033), 1, sym_line_continuation, - [167209] = 2, - ACTIONS(3), 1, + [165224] = 2, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(5035), 1, sym_line_continuation, - [167216] = 2, - ACTIONS(3), 1, + [165232] = 2, + ACTIONS(5035), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, - ACTIONS(5037), 1, sym_line_continuation, - [167223] = 2, - ACTIONS(3), 1, + [165240] = 2, + ACTIONS(5037), 1, + anon_sym_in, + ACTIONS(3), 2, sym_comment, + sym_line_continuation, + [165248] = 2, ACTIONS(5039), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, sym_line_continuation, - [167230] = 2, + [165256] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5041), 1, sym_line_continuation, - [167237] = 2, + [165263] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5043), 1, sym_line_continuation, - [167244] = 2, + [165270] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5045), 1, sym_line_continuation, - [167251] = 2, + [165277] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5047), 1, sym_line_continuation, - [167258] = 2, + [165284] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5049), 1, sym_line_continuation, - [167265] = 2, + [165291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5051), 1, sym_line_continuation, - [167272] = 2, + [165298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5053), 1, sym_line_continuation, - [167279] = 2, + [165305] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5055), 1, sym_line_continuation, - [167286] = 2, + [165312] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5057), 1, sym_line_continuation, - [167293] = 2, + [165319] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5059), 1, sym_line_continuation, - [167300] = 2, + [165326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5061), 1, sym_line_continuation, - [167307] = 2, + [165333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5063), 1, sym_line_continuation, - [167314] = 2, + [165340] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5065), 1, sym_line_continuation, - [167321] = 2, + [165347] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5067), 1, sym_line_continuation, - [167328] = 2, + [165354] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5069), 1, sym_line_continuation, - [167335] = 2, + [165361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5071), 1, sym_line_continuation, + [165368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5073), 1, + sym_line_continuation, + [165375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5075), 1, + sym_line_continuation, + [165382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5077), 1, + sym_line_continuation, + [165389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5079), 1, + sym_line_continuation, + [165396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5081), 1, + sym_line_continuation, + [165403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5083), 1, + sym_line_continuation, + [165410] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5085), 1, + sym_line_continuation, + [165417] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(150)] = 0, - [SMALL_STATE(151)] = 121, - [SMALL_STATE(152)] = 242, - [SMALL_STATE(153)] = 363, - [SMALL_STATE(154)] = 484, - [SMALL_STATE(155)] = 605, - [SMALL_STATE(156)] = 726, - [SMALL_STATE(157)] = 847, - [SMALL_STATE(158)] = 968, - [SMALL_STATE(159)] = 1089, - [SMALL_STATE(160)] = 1210, - [SMALL_STATE(161)] = 1331, - [SMALL_STATE(162)] = 1452, - [SMALL_STATE(163)] = 1573, - [SMALL_STATE(164)] = 1694, - [SMALL_STATE(165)] = 1815, - [SMALL_STATE(166)] = 1936, - [SMALL_STATE(167)] = 2057, - [SMALL_STATE(168)] = 2178, - [SMALL_STATE(169)] = 2299, - [SMALL_STATE(170)] = 2420, - [SMALL_STATE(171)] = 2541, - [SMALL_STATE(172)] = 2662, - [SMALL_STATE(173)] = 2783, - [SMALL_STATE(174)] = 2904, - [SMALL_STATE(175)] = 3025, - [SMALL_STATE(176)] = 3146, - [SMALL_STATE(177)] = 3267, - [SMALL_STATE(178)] = 3388, - [SMALL_STATE(179)] = 3509, - [SMALL_STATE(180)] = 3628, - [SMALL_STATE(181)] = 3749, - [SMALL_STATE(182)] = 3870, - [SMALL_STATE(183)] = 3991, - [SMALL_STATE(184)] = 4112, - [SMALL_STATE(185)] = 4231, - [SMALL_STATE(186)] = 4352, - [SMALL_STATE(187)] = 4473, - [SMALL_STATE(188)] = 4594, - [SMALL_STATE(189)] = 4713, - [SMALL_STATE(190)] = 4827, - [SMALL_STATE(191)] = 4945, - [SMALL_STATE(192)] = 5059, - [SMALL_STATE(193)] = 5173, - [SMALL_STATE(194)] = 5287, - [SMALL_STATE(195)] = 5401, - [SMALL_STATE(196)] = 5515, - [SMALL_STATE(197)] = 5629, - [SMALL_STATE(198)] = 5743, - [SMALL_STATE(199)] = 5857, - [SMALL_STATE(200)] = 5975, - [SMALL_STATE(201)] = 6089, - [SMALL_STATE(202)] = 6203, - [SMALL_STATE(203)] = 6317, - [SMALL_STATE(204)] = 6431, - [SMALL_STATE(205)] = 6545, - [SMALL_STATE(206)] = 6659, - [SMALL_STATE(207)] = 6773, - [SMALL_STATE(208)] = 6887, - [SMALL_STATE(209)] = 7001, - [SMALL_STATE(210)] = 7115, - [SMALL_STATE(211)] = 7229, - [SMALL_STATE(212)] = 7343, - [SMALL_STATE(213)] = 7457, - [SMALL_STATE(214)] = 7571, - [SMALL_STATE(215)] = 7689, - [SMALL_STATE(216)] = 7803, - [SMALL_STATE(217)] = 7919, - [SMALL_STATE(218)] = 8033, - [SMALL_STATE(219)] = 8147, - [SMALL_STATE(220)] = 8265, - [SMALL_STATE(221)] = 8379, - [SMALL_STATE(222)] = 8493, - [SMALL_STATE(223)] = 8607, - [SMALL_STATE(224)] = 8725, - [SMALL_STATE(225)] = 8839, - [SMALL_STATE(226)] = 8953, - [SMALL_STATE(227)] = 9067, - [SMALL_STATE(228)] = 9181, - [SMALL_STATE(229)] = 9299, - [SMALL_STATE(230)] = 9413, - [SMALL_STATE(231)] = 9527, - [SMALL_STATE(232)] = 9641, - [SMALL_STATE(233)] = 9755, - [SMALL_STATE(234)] = 9869, - [SMALL_STATE(235)] = 9983, - [SMALL_STATE(236)] = 10097, - [SMALL_STATE(237)] = 10211, - [SMALL_STATE(238)] = 10325, - [SMALL_STATE(239)] = 10443, - [SMALL_STATE(240)] = 10561, - [SMALL_STATE(241)] = 10675, - [SMALL_STATE(242)] = 10789, - [SMALL_STATE(243)] = 10907, - [SMALL_STATE(244)] = 11025, - [SMALL_STATE(245)] = 11143, - [SMALL_STATE(246)] = 11261, - [SMALL_STATE(247)] = 11375, - [SMALL_STATE(248)] = 11491, - [SMALL_STATE(249)] = 11609, - [SMALL_STATE(250)] = 11727, - [SMALL_STATE(251)] = 11845, - [SMALL_STATE(252)] = 11959, - [SMALL_STATE(253)] = 12077, - [SMALL_STATE(254)] = 12195, - [SMALL_STATE(255)] = 12313, - [SMALL_STATE(256)] = 12427, - [SMALL_STATE(257)] = 12545, - [SMALL_STATE(258)] = 12659, - [SMALL_STATE(259)] = 12773, - [SMALL_STATE(260)] = 12887, - [SMALL_STATE(261)] = 13001, - [SMALL_STATE(262)] = 13119, - [SMALL_STATE(263)] = 13233, - [SMALL_STATE(264)] = 13347, - [SMALL_STATE(265)] = 13461, - [SMALL_STATE(266)] = 13575, - [SMALL_STATE(267)] = 13689, - [SMALL_STATE(268)] = 13803, - [SMALL_STATE(269)] = 13917, - [SMALL_STATE(270)] = 14031, - [SMALL_STATE(271)] = 14145, - [SMALL_STATE(272)] = 14259, - [SMALL_STATE(273)] = 14373, - [SMALL_STATE(274)] = 14487, - [SMALL_STATE(275)] = 14601, - [SMALL_STATE(276)] = 14715, - [SMALL_STATE(277)] = 14829, - [SMALL_STATE(278)] = 14943, - [SMALL_STATE(279)] = 15057, - [SMALL_STATE(280)] = 15171, - [SMALL_STATE(281)] = 15285, - [SMALL_STATE(282)] = 15399, - [SMALL_STATE(283)] = 15513, - [SMALL_STATE(284)] = 15627, - [SMALL_STATE(285)] = 15741, - [SMALL_STATE(286)] = 15855, - [SMALL_STATE(287)] = 15969, - [SMALL_STATE(288)] = 16087, - [SMALL_STATE(289)] = 16201, - [SMALL_STATE(290)] = 16315, - [SMALL_STATE(291)] = 16429, - [SMALL_STATE(292)] = 16543, - [SMALL_STATE(293)] = 16661, - [SMALL_STATE(294)] = 16777, - [SMALL_STATE(295)] = 16895, - [SMALL_STATE(296)] = 17009, - [SMALL_STATE(297)] = 17123, - [SMALL_STATE(298)] = 17241, - [SMALL_STATE(299)] = 17355, - [SMALL_STATE(300)] = 17469, - [SMALL_STATE(301)] = 17587, - [SMALL_STATE(302)] = 17701, - [SMALL_STATE(303)] = 17819, - [SMALL_STATE(304)] = 17933, - [SMALL_STATE(305)] = 18047, - [SMALL_STATE(306)] = 18165, - [SMALL_STATE(307)] = 18279, - [SMALL_STATE(308)] = 18397, - [SMALL_STATE(309)] = 18511, - [SMALL_STATE(310)] = 18629, - [SMALL_STATE(311)] = 18700, - [SMALL_STATE(312)] = 18771, - [SMALL_STATE(313)] = 18886, - [SMALL_STATE(314)] = 18957, - [SMALL_STATE(315)] = 19028, - [SMALL_STATE(316)] = 19099, - [SMALL_STATE(317)] = 19170, - [SMALL_STATE(318)] = 19245, - [SMALL_STATE(319)] = 19316, - [SMALL_STATE(320)] = 19387, - [SMALL_STATE(321)] = 19458, - [SMALL_STATE(322)] = 19531, - [SMALL_STATE(323)] = 19638, - [SMALL_STATE(324)] = 19745, - [SMALL_STATE(325)] = 19816, - [SMALL_STATE(326)] = 19905, - [SMALL_STATE(327)] = 19976, - [SMALL_STATE(328)] = 20081, - [SMALL_STATE(329)] = 20172, - [SMALL_STATE(330)] = 20265, - [SMALL_STATE(331)] = 20360, - [SMALL_STATE(332)] = 20447, - [SMALL_STATE(333)] = 20530, - [SMALL_STATE(334)] = 20613, - [SMALL_STATE(335)] = 20688, - [SMALL_STATE(336)] = 20771, - [SMALL_STATE(337)] = 20842, - [SMALL_STATE(338)] = 20917, - [SMALL_STATE(339)] = 20988, - [SMALL_STATE(340)] = 21061, - [SMALL_STATE(341)] = 21134, - [SMALL_STATE(342)] = 21241, - [SMALL_STATE(343)] = 21316, - [SMALL_STATE(344)] = 21387, - [SMALL_STATE(345)] = 21458, - [SMALL_STATE(346)] = 21529, - [SMALL_STATE(347)] = 21612, - [SMALL_STATE(348)] = 21717, - [SMALL_STATE(349)] = 21790, - [SMALL_STATE(350)] = 21861, - [SMALL_STATE(351)] = 21932, - [SMALL_STATE(352)] = 22003, - [SMALL_STATE(353)] = 22074, - [SMALL_STATE(354)] = 22145, - [SMALL_STATE(355)] = 22220, - [SMALL_STATE(356)] = 22291, - [SMALL_STATE(357)] = 22362, - [SMALL_STATE(358)] = 22433, - [SMALL_STATE(359)] = 22540, - [SMALL_STATE(360)] = 22613, - [SMALL_STATE(361)] = 22696, - [SMALL_STATE(362)] = 22779, - [SMALL_STATE(363)] = 22866, - [SMALL_STATE(364)] = 22961, - [SMALL_STATE(365)] = 23054, - [SMALL_STATE(366)] = 23127, - [SMALL_STATE(367)] = 23218, - [SMALL_STATE(368)] = 23291, - [SMALL_STATE(369)] = 23380, - [SMALL_STATE(370)] = 23453, - [SMALL_STATE(371)] = 23526, - [SMALL_STATE(372)] = 23597, - [SMALL_STATE(373)] = 23670, - [SMALL_STATE(374)] = 23777, - [SMALL_STATE(375)] = 23884, - [SMALL_STATE(376)] = 23955, - [SMALL_STATE(377)] = 24030, - [SMALL_STATE(378)] = 24101, - [SMALL_STATE(379)] = 24180, - [SMALL_STATE(380)] = 24251, - [SMALL_STATE(381)] = 24322, - [SMALL_STATE(382)] = 24393, - [SMALL_STATE(383)] = 24472, - [SMALL_STATE(384)] = 24547, - [SMALL_STATE(385)] = 24626, - [SMALL_STATE(386)] = 24741, - [SMALL_STATE(387)] = 24820, - [SMALL_STATE(388)] = 24895, - [SMALL_STATE(389)] = 25010, - [SMALL_STATE(390)] = 25115, - [SMALL_STATE(391)] = 25196, - [SMALL_STATE(392)] = 25281, - [SMALL_STATE(393)] = 25386, - [SMALL_STATE(394)] = 25467, - [SMALL_STATE(395)] = 25552, - [SMALL_STATE(396)] = 25664, - [SMALL_STATE(397)] = 25776, - [SMALL_STATE(398)] = 25888, - [SMALL_STATE(399)] = 25956, - [SMALL_STATE(400)] = 26068, - [SMALL_STATE(401)] = 26180, - [SMALL_STATE(402)] = 26292, - [SMALL_STATE(403)] = 26404, - [SMALL_STATE(404)] = 26516, - [SMALL_STATE(405)] = 26628, - [SMALL_STATE(406)] = 26740, - [SMALL_STATE(407)] = 26852, - [SMALL_STATE(408)] = 26964, - [SMALL_STATE(409)] = 27076, - [SMALL_STATE(410)] = 27188, - [SMALL_STATE(411)] = 27300, - [SMALL_STATE(412)] = 27412, - [SMALL_STATE(413)] = 27524, - [SMALL_STATE(414)] = 27636, - [SMALL_STATE(415)] = 27748, - [SMALL_STATE(416)] = 27816, - [SMALL_STATE(417)] = 27928, - [SMALL_STATE(418)] = 28040, - [SMALL_STATE(419)] = 28152, - [SMALL_STATE(420)] = 28264, - [SMALL_STATE(421)] = 28376, - [SMALL_STATE(422)] = 28488, - [SMALL_STATE(423)] = 28600, - [SMALL_STATE(424)] = 28712, - [SMALL_STATE(425)] = 28824, - [SMALL_STATE(426)] = 28936, - [SMALL_STATE(427)] = 29048, - [SMALL_STATE(428)] = 29160, - [SMALL_STATE(429)] = 29272, - [SMALL_STATE(430)] = 29384, - [SMALL_STATE(431)] = 29496, - [SMALL_STATE(432)] = 29608, - [SMALL_STATE(433)] = 29720, - [SMALL_STATE(434)] = 29832, - [SMALL_STATE(435)] = 29944, - [SMALL_STATE(436)] = 30056, - [SMALL_STATE(437)] = 30168, - [SMALL_STATE(438)] = 30280, - [SMALL_STATE(439)] = 30392, - [SMALL_STATE(440)] = 30504, - [SMALL_STATE(441)] = 30616, - [SMALL_STATE(442)] = 30728, - [SMALL_STATE(443)] = 30840, - [SMALL_STATE(444)] = 30952, - [SMALL_STATE(445)] = 31064, - [SMALL_STATE(446)] = 31176, - [SMALL_STATE(447)] = 31288, - [SMALL_STATE(448)] = 31400, - [SMALL_STATE(449)] = 31512, - [SMALL_STATE(450)] = 31624, - [SMALL_STATE(451)] = 31736, - [SMALL_STATE(452)] = 31848, - [SMALL_STATE(453)] = 31960, - [SMALL_STATE(454)] = 32072, - [SMALL_STATE(455)] = 32184, - [SMALL_STATE(456)] = 32296, - [SMALL_STATE(457)] = 32408, - [SMALL_STATE(458)] = 32476, - [SMALL_STATE(459)] = 32588, - [SMALL_STATE(460)] = 32700, - [SMALL_STATE(461)] = 32812, - [SMALL_STATE(462)] = 32924, - [SMALL_STATE(463)] = 32992, - [SMALL_STATE(464)] = 33104, - [SMALL_STATE(465)] = 33216, - [SMALL_STATE(466)] = 33328, - [SMALL_STATE(467)] = 33440, - [SMALL_STATE(468)] = 33552, - [SMALL_STATE(469)] = 33664, - [SMALL_STATE(470)] = 33776, - [SMALL_STATE(471)] = 33888, - [SMALL_STATE(472)] = 34000, - [SMALL_STATE(473)] = 34112, - [SMALL_STATE(474)] = 34224, - [SMALL_STATE(475)] = 34336, - [SMALL_STATE(476)] = 34448, - [SMALL_STATE(477)] = 34560, - [SMALL_STATE(478)] = 34672, - [SMALL_STATE(479)] = 34784, - [SMALL_STATE(480)] = 34896, - [SMALL_STATE(481)] = 35008, - [SMALL_STATE(482)] = 35120, - [SMALL_STATE(483)] = 35232, - [SMALL_STATE(484)] = 35344, - [SMALL_STATE(485)] = 35456, - [SMALL_STATE(486)] = 35568, - [SMALL_STATE(487)] = 35680, - [SMALL_STATE(488)] = 35792, - [SMALL_STATE(489)] = 35904, - [SMALL_STATE(490)] = 36016, - [SMALL_STATE(491)] = 36128, - [SMALL_STATE(492)] = 36240, - [SMALL_STATE(493)] = 36352, - [SMALL_STATE(494)] = 36464, - [SMALL_STATE(495)] = 36576, - [SMALL_STATE(496)] = 36688, - [SMALL_STATE(497)] = 36800, - [SMALL_STATE(498)] = 36912, - [SMALL_STATE(499)] = 37024, - [SMALL_STATE(500)] = 37136, - [SMALL_STATE(501)] = 37248, - [SMALL_STATE(502)] = 37360, - [SMALL_STATE(503)] = 37472, - [SMALL_STATE(504)] = 37584, - [SMALL_STATE(505)] = 37696, - [SMALL_STATE(506)] = 37808, - [SMALL_STATE(507)] = 37920, - [SMALL_STATE(508)] = 38032, - [SMALL_STATE(509)] = 38144, - [SMALL_STATE(510)] = 38256, - [SMALL_STATE(511)] = 38368, - [SMALL_STATE(512)] = 38480, - [SMALL_STATE(513)] = 38592, - [SMALL_STATE(514)] = 38704, - [SMALL_STATE(515)] = 38816, - [SMALL_STATE(516)] = 38928, - [SMALL_STATE(517)] = 39040, - [SMALL_STATE(518)] = 39152, - [SMALL_STATE(519)] = 39264, - [SMALL_STATE(520)] = 39376, - [SMALL_STATE(521)] = 39488, - [SMALL_STATE(522)] = 39566, - [SMALL_STATE(523)] = 39636, - [SMALL_STATE(524)] = 39748, - [SMALL_STATE(525)] = 39818, - [SMALL_STATE(526)] = 39930, - [SMALL_STATE(527)] = 40042, - [SMALL_STATE(528)] = 40110, - [SMALL_STATE(529)] = 40178, - [SMALL_STATE(530)] = 40246, - [SMALL_STATE(531)] = 40358, - [SMALL_STATE(532)] = 40470, - [SMALL_STATE(533)] = 40582, - [SMALL_STATE(534)] = 40694, - [SMALL_STATE(535)] = 40806, - [SMALL_STATE(536)] = 40918, - [SMALL_STATE(537)] = 41030, - [SMALL_STATE(538)] = 41142, - [SMALL_STATE(539)] = 41254, - [SMALL_STATE(540)] = 41366, - [SMALL_STATE(541)] = 41478, - [SMALL_STATE(542)] = 41590, - [SMALL_STATE(543)] = 41702, - [SMALL_STATE(544)] = 41814, - [SMALL_STATE(545)] = 41926, - [SMALL_STATE(546)] = 41994, - [SMALL_STATE(547)] = 42062, - [SMALL_STATE(548)] = 42130, - [SMALL_STATE(549)] = 42198, - [SMALL_STATE(550)] = 42266, - [SMALL_STATE(551)] = 42378, - [SMALL_STATE(552)] = 42490, - [SMALL_STATE(553)] = 42602, - [SMALL_STATE(554)] = 42714, - [SMALL_STATE(555)] = 42784, - [SMALL_STATE(556)] = 42896, - [SMALL_STATE(557)] = 43008, - [SMALL_STATE(558)] = 43120, - [SMALL_STATE(559)] = 43232, - [SMALL_STATE(560)] = 43344, - [SMALL_STATE(561)] = 43456, - [SMALL_STATE(562)] = 43568, - [SMALL_STATE(563)] = 43680, - [SMALL_STATE(564)] = 43792, - [SMALL_STATE(565)] = 43904, - [SMALL_STATE(566)] = 44016, - [SMALL_STATE(567)] = 44128, - [SMALL_STATE(568)] = 44240, - [SMALL_STATE(569)] = 44352, - [SMALL_STATE(570)] = 44464, - [SMALL_STATE(571)] = 44576, - [SMALL_STATE(572)] = 44688, - [SMALL_STATE(573)] = 44800, - [SMALL_STATE(574)] = 44912, - [SMALL_STATE(575)] = 45024, - [SMALL_STATE(576)] = 45136, - [SMALL_STATE(577)] = 45248, - [SMALL_STATE(578)] = 45360, - [SMALL_STATE(579)] = 45472, - [SMALL_STATE(580)] = 45584, - [SMALL_STATE(581)] = 45696, - [SMALL_STATE(582)] = 45808, - [SMALL_STATE(583)] = 45920, - [SMALL_STATE(584)] = 46032, - [SMALL_STATE(585)] = 46144, - [SMALL_STATE(586)] = 46256, - [SMALL_STATE(587)] = 46368, - [SMALL_STATE(588)] = 46480, - [SMALL_STATE(589)] = 46592, - [SMALL_STATE(590)] = 46704, - [SMALL_STATE(591)] = 46816, - [SMALL_STATE(592)] = 46928, - [SMALL_STATE(593)] = 47040, - [SMALL_STATE(594)] = 47152, - [SMALL_STATE(595)] = 47264, - [SMALL_STATE(596)] = 47376, - [SMALL_STATE(597)] = 47488, - [SMALL_STATE(598)] = 47600, - [SMALL_STATE(599)] = 47712, - [SMALL_STATE(600)] = 47824, - [SMALL_STATE(601)] = 47936, - [SMALL_STATE(602)] = 48048, - [SMALL_STATE(603)] = 48160, - [SMALL_STATE(604)] = 48272, - [SMALL_STATE(605)] = 48384, - [SMALL_STATE(606)] = 48496, - [SMALL_STATE(607)] = 48608, - [SMALL_STATE(608)] = 48720, - [SMALL_STATE(609)] = 48832, - [SMALL_STATE(610)] = 48944, - [SMALL_STATE(611)] = 49056, - [SMALL_STATE(612)] = 49168, - [SMALL_STATE(613)] = 49280, - [SMALL_STATE(614)] = 49392, - [SMALL_STATE(615)] = 49504, - [SMALL_STATE(616)] = 49616, - [SMALL_STATE(617)] = 49728, - [SMALL_STATE(618)] = 49840, - [SMALL_STATE(619)] = 49952, - [SMALL_STATE(620)] = 50064, - [SMALL_STATE(621)] = 50176, - [SMALL_STATE(622)] = 50288, - [SMALL_STATE(623)] = 50400, - [SMALL_STATE(624)] = 50512, - [SMALL_STATE(625)] = 50624, - [SMALL_STATE(626)] = 50736, - [SMALL_STATE(627)] = 50848, - [SMALL_STATE(628)] = 50960, - [SMALL_STATE(629)] = 51072, - [SMALL_STATE(630)] = 51184, - [SMALL_STATE(631)] = 51296, - [SMALL_STATE(632)] = 51408, - [SMALL_STATE(633)] = 51520, - [SMALL_STATE(634)] = 51632, - [SMALL_STATE(635)] = 51744, - [SMALL_STATE(636)] = 51856, - [SMALL_STATE(637)] = 51968, - [SMALL_STATE(638)] = 52080, - [SMALL_STATE(639)] = 52192, - [SMALL_STATE(640)] = 52304, - [SMALL_STATE(641)] = 52374, - [SMALL_STATE(642)] = 52486, - [SMALL_STATE(643)] = 52598, - [SMALL_STATE(644)] = 52710, - [SMALL_STATE(645)] = 52778, - [SMALL_STATE(646)] = 52890, - [SMALL_STATE(647)] = 53002, - [SMALL_STATE(648)] = 53070, - [SMALL_STATE(649)] = 53138, - [SMALL_STATE(650)] = 53206, - [SMALL_STATE(651)] = 53318, - [SMALL_STATE(652)] = 53430, - [SMALL_STATE(653)] = 53498, - [SMALL_STATE(654)] = 53610, - [SMALL_STATE(655)] = 53722, - [SMALL_STATE(656)] = 53834, - [SMALL_STATE(657)] = 53946, - [SMALL_STATE(658)] = 54058, - [SMALL_STATE(659)] = 54170, - [SMALL_STATE(660)] = 54282, - [SMALL_STATE(661)] = 54394, - [SMALL_STATE(662)] = 54506, - [SMALL_STATE(663)] = 54618, - [SMALL_STATE(664)] = 54730, - [SMALL_STATE(665)] = 54842, - [SMALL_STATE(666)] = 54954, - [SMALL_STATE(667)] = 55066, - [SMALL_STATE(668)] = 55178, - [SMALL_STATE(669)] = 55290, - [SMALL_STATE(670)] = 55402, - [SMALL_STATE(671)] = 55514, - [SMALL_STATE(672)] = 55626, - [SMALL_STATE(673)] = 55738, - [SMALL_STATE(674)] = 55850, - [SMALL_STATE(675)] = 55962, - [SMALL_STATE(676)] = 56074, - [SMALL_STATE(677)] = 56186, - [SMALL_STATE(678)] = 56298, - [SMALL_STATE(679)] = 56410, - [SMALL_STATE(680)] = 56522, - [SMALL_STATE(681)] = 56634, - [SMALL_STATE(682)] = 56746, - [SMALL_STATE(683)] = 56858, - [SMALL_STATE(684)] = 56970, - [SMALL_STATE(685)] = 57082, - [SMALL_STATE(686)] = 57194, - [SMALL_STATE(687)] = 57306, - [SMALL_STATE(688)] = 57418, - [SMALL_STATE(689)] = 57530, - [SMALL_STATE(690)] = 57642, - [SMALL_STATE(691)] = 57754, - [SMALL_STATE(692)] = 57866, - [SMALL_STATE(693)] = 57978, - [SMALL_STATE(694)] = 58090, - [SMALL_STATE(695)] = 58160, - [SMALL_STATE(696)] = 58228, - [SMALL_STATE(697)] = 58340, - [SMALL_STATE(698)] = 58452, - [SMALL_STATE(699)] = 58564, - [SMALL_STATE(700)] = 58676, - [SMALL_STATE(701)] = 58788, - [SMALL_STATE(702)] = 58900, - [SMALL_STATE(703)] = 58970, - [SMALL_STATE(704)] = 59082, - [SMALL_STATE(705)] = 59194, - [SMALL_STATE(706)] = 59306, - [SMALL_STATE(707)] = 59418, - [SMALL_STATE(708)] = 59530, - [SMALL_STATE(709)] = 59642, - [SMALL_STATE(710)] = 59754, - [SMALL_STATE(711)] = 59866, - [SMALL_STATE(712)] = 59978, - [SMALL_STATE(713)] = 60090, - [SMALL_STATE(714)] = 60202, - [SMALL_STATE(715)] = 60270, - [SMALL_STATE(716)] = 60382, - [SMALL_STATE(717)] = 60450, - [SMALL_STATE(718)] = 60562, - [SMALL_STATE(719)] = 60674, - [SMALL_STATE(720)] = 60786, - [SMALL_STATE(721)] = 60898, - [SMALL_STATE(722)] = 61010, - [SMALL_STATE(723)] = 61122, - [SMALL_STATE(724)] = 61234, - [SMALL_STATE(725)] = 61346, - [SMALL_STATE(726)] = 61458, - [SMALL_STATE(727)] = 61570, - [SMALL_STATE(728)] = 61682, - [SMALL_STATE(729)] = 61752, - [SMALL_STATE(730)] = 61864, - [SMALL_STATE(731)] = 61976, - [SMALL_STATE(732)] = 62088, - [SMALL_STATE(733)] = 62200, - [SMALL_STATE(734)] = 62312, - [SMALL_STATE(735)] = 62424, - [SMALL_STATE(736)] = 62536, - [SMALL_STATE(737)] = 62648, - [SMALL_STATE(738)] = 62760, - [SMALL_STATE(739)] = 62872, - [SMALL_STATE(740)] = 62984, - [SMALL_STATE(741)] = 63096, - [SMALL_STATE(742)] = 63208, - [SMALL_STATE(743)] = 63278, - [SMALL_STATE(744)] = 63390, - [SMALL_STATE(745)] = 63502, - [SMALL_STATE(746)] = 63614, - [SMALL_STATE(747)] = 63726, - [SMALL_STATE(748)] = 63838, - [SMALL_STATE(749)] = 63950, - [SMALL_STATE(750)] = 64062, - [SMALL_STATE(751)] = 64174, - [SMALL_STATE(752)] = 64286, - [SMALL_STATE(753)] = 64398, - [SMALL_STATE(754)] = 64510, - [SMALL_STATE(755)] = 64622, - [SMALL_STATE(756)] = 64734, - [SMALL_STATE(757)] = 64846, - [SMALL_STATE(758)] = 64958, - [SMALL_STATE(759)] = 65070, - [SMALL_STATE(760)] = 65182, - [SMALL_STATE(761)] = 65252, - [SMALL_STATE(762)] = 65320, - [SMALL_STATE(763)] = 65432, - [SMALL_STATE(764)] = 65544, - [SMALL_STATE(765)] = 65656, - [SMALL_STATE(766)] = 65768, - [SMALL_STATE(767)] = 65880, - [SMALL_STATE(768)] = 65992, - [SMALL_STATE(769)] = 66104, - [SMALL_STATE(770)] = 66172, - [SMALL_STATE(771)] = 66284, - [SMALL_STATE(772)] = 66396, - [SMALL_STATE(773)] = 66508, - [SMALL_STATE(774)] = 66620, - [SMALL_STATE(775)] = 66732, - [SMALL_STATE(776)] = 66844, - [SMALL_STATE(777)] = 66956, - [SMALL_STATE(778)] = 67068, - [SMALL_STATE(779)] = 67180, - [SMALL_STATE(780)] = 67292, - [SMALL_STATE(781)] = 67404, - [SMALL_STATE(782)] = 67474, - [SMALL_STATE(783)] = 67586, - [SMALL_STATE(784)] = 67698, - [SMALL_STATE(785)] = 67810, - [SMALL_STATE(786)] = 67922, - [SMALL_STATE(787)] = 68034, - [SMALL_STATE(788)] = 68146, - [SMALL_STATE(789)] = 68258, - [SMALL_STATE(790)] = 68370, - [SMALL_STATE(791)] = 68482, - [SMALL_STATE(792)] = 68594, - [SMALL_STATE(793)] = 68706, - [SMALL_STATE(794)] = 68774, - [SMALL_STATE(795)] = 68886, - [SMALL_STATE(796)] = 68998, - [SMALL_STATE(797)] = 69110, - [SMALL_STATE(798)] = 69222, - [SMALL_STATE(799)] = 69334, - [SMALL_STATE(800)] = 69446, - [SMALL_STATE(801)] = 69558, - [SMALL_STATE(802)] = 69670, - [SMALL_STATE(803)] = 69782, - [SMALL_STATE(804)] = 69894, - [SMALL_STATE(805)] = 70006, - [SMALL_STATE(806)] = 70118, - [SMALL_STATE(807)] = 70230, - [SMALL_STATE(808)] = 70342, - [SMALL_STATE(809)] = 70454, - [SMALL_STATE(810)] = 70566, - [SMALL_STATE(811)] = 70634, - [SMALL_STATE(812)] = 70746, - [SMALL_STATE(813)] = 70858, - [SMALL_STATE(814)] = 70970, - [SMALL_STATE(815)] = 71082, - [SMALL_STATE(816)] = 71194, - [SMALL_STATE(817)] = 71306, - [SMALL_STATE(818)] = 71418, - [SMALL_STATE(819)] = 71530, - [SMALL_STATE(820)] = 71642, - [SMALL_STATE(821)] = 71754, - [SMALL_STATE(822)] = 71866, - [SMALL_STATE(823)] = 71978, - [SMALL_STATE(824)] = 72090, - [SMALL_STATE(825)] = 72202, - [SMALL_STATE(826)] = 72314, - [SMALL_STATE(827)] = 72426, - [SMALL_STATE(828)] = 72538, - [SMALL_STATE(829)] = 72650, - [SMALL_STATE(830)] = 72762, - [SMALL_STATE(831)] = 72874, - [SMALL_STATE(832)] = 72986, - [SMALL_STATE(833)] = 73098, - [SMALL_STATE(834)] = 73210, - [SMALL_STATE(835)] = 73322, - [SMALL_STATE(836)] = 73434, - [SMALL_STATE(837)] = 73546, - [SMALL_STATE(838)] = 73658, - [SMALL_STATE(839)] = 73770, - [SMALL_STATE(840)] = 73882, - [SMALL_STATE(841)] = 73994, - [SMALL_STATE(842)] = 74106, - [SMALL_STATE(843)] = 74218, - [SMALL_STATE(844)] = 74330, - [SMALL_STATE(845)] = 74442, - [SMALL_STATE(846)] = 74554, - [SMALL_STATE(847)] = 74666, - [SMALL_STATE(848)] = 74778, - [SMALL_STATE(849)] = 74890, - [SMALL_STATE(850)] = 75002, - [SMALL_STATE(851)] = 75114, - [SMALL_STATE(852)] = 75226, - [SMALL_STATE(853)] = 75338, - [SMALL_STATE(854)] = 75450, - [SMALL_STATE(855)] = 75562, - [SMALL_STATE(856)] = 75674, - [SMALL_STATE(857)] = 75786, - [SMALL_STATE(858)] = 75898, - [SMALL_STATE(859)] = 76010, - [SMALL_STATE(860)] = 76122, - [SMALL_STATE(861)] = 76234, - [SMALL_STATE(862)] = 76346, - [SMALL_STATE(863)] = 76458, - [SMALL_STATE(864)] = 76570, - [SMALL_STATE(865)] = 76640, - [SMALL_STATE(866)] = 76710, - [SMALL_STATE(867)] = 76780, - [SMALL_STATE(868)] = 76850, - [SMALL_STATE(869)] = 76920, - [SMALL_STATE(870)] = 76990, - [SMALL_STATE(871)] = 77060, - [SMALL_STATE(872)] = 77130, - [SMALL_STATE(873)] = 77242, - [SMALL_STATE(874)] = 77354, - [SMALL_STATE(875)] = 77466, - [SMALL_STATE(876)] = 77578, - [SMALL_STATE(877)] = 77690, - [SMALL_STATE(878)] = 77802, - [SMALL_STATE(879)] = 77914, - [SMALL_STATE(880)] = 78026, - [SMALL_STATE(881)] = 78138, - [SMALL_STATE(882)] = 78250, - [SMALL_STATE(883)] = 78362, - [SMALL_STATE(884)] = 78474, - [SMALL_STATE(885)] = 78586, - [SMALL_STATE(886)] = 78698, - [SMALL_STATE(887)] = 78810, - [SMALL_STATE(888)] = 78922, - [SMALL_STATE(889)] = 79034, - [SMALL_STATE(890)] = 79146, - [SMALL_STATE(891)] = 79258, - [SMALL_STATE(892)] = 79336, - [SMALL_STATE(893)] = 79448, - [SMALL_STATE(894)] = 79560, - [SMALL_STATE(895)] = 79627, - [SMALL_STATE(896)] = 79694, - [SMALL_STATE(897)] = 79761, - [SMALL_STATE(898)] = 79828, - [SMALL_STATE(899)] = 79895, - [SMALL_STATE(900)] = 79962, - [SMALL_STATE(901)] = 80033, - [SMALL_STATE(902)] = 80100, - [SMALL_STATE(903)] = 80167, - [SMALL_STATE(904)] = 80234, - [SMALL_STATE(905)] = 80301, - [SMALL_STATE(906)] = 80368, - [SMALL_STATE(907)] = 80435, - [SMALL_STATE(908)] = 80502, - [SMALL_STATE(909)] = 80573, - [SMALL_STATE(910)] = 80640, - [SMALL_STATE(911)] = 80707, - [SMALL_STATE(912)] = 80774, - [SMALL_STATE(913)] = 80841, - [SMALL_STATE(914)] = 80912, - [SMALL_STATE(915)] = 80979, - [SMALL_STATE(916)] = 81046, - [SMALL_STATE(917)] = 81113, - [SMALL_STATE(918)] = 81180, - [SMALL_STATE(919)] = 81247, - [SMALL_STATE(920)] = 81314, - [SMALL_STATE(921)] = 81381, - [SMALL_STATE(922)] = 81448, - [SMALL_STATE(923)] = 81515, - [SMALL_STATE(924)] = 81582, - [SMALL_STATE(925)] = 81649, - [SMALL_STATE(926)] = 81716, - [SMALL_STATE(927)] = 81787, - [SMALL_STATE(928)] = 81854, - [SMALL_STATE(929)] = 81921, - [SMALL_STATE(930)] = 81988, - [SMALL_STATE(931)] = 82055, - [SMALL_STATE(932)] = 82122, - [SMALL_STATE(933)] = 82189, - [SMALL_STATE(934)] = 82256, - [SMALL_STATE(935)] = 82323, - [SMALL_STATE(936)] = 82390, - [SMALL_STATE(937)] = 82457, - [SMALL_STATE(938)] = 82524, - [SMALL_STATE(939)] = 82591, - [SMALL_STATE(940)] = 82658, - [SMALL_STATE(941)] = 82725, - [SMALL_STATE(942)] = 82792, - [SMALL_STATE(943)] = 82859, - [SMALL_STATE(944)] = 82926, - [SMALL_STATE(945)] = 82993, - [SMALL_STATE(946)] = 83060, - [SMALL_STATE(947)] = 83127, - [SMALL_STATE(948)] = 83194, - [SMALL_STATE(949)] = 83261, - [SMALL_STATE(950)] = 83328, - [SMALL_STATE(951)] = 83395, - [SMALL_STATE(952)] = 83462, - [SMALL_STATE(953)] = 83529, - [SMALL_STATE(954)] = 83596, - [SMALL_STATE(955)] = 83667, - [SMALL_STATE(956)] = 83734, - [SMALL_STATE(957)] = 83801, - [SMALL_STATE(958)] = 83868, - [SMALL_STATE(959)] = 83935, - [SMALL_STATE(960)] = 84002, - [SMALL_STATE(961)] = 84069, - [SMALL_STATE(962)] = 84136, - [SMALL_STATE(963)] = 84203, - [SMALL_STATE(964)] = 84270, - [SMALL_STATE(965)] = 84337, - [SMALL_STATE(966)] = 84404, - [SMALL_STATE(967)] = 84471, - [SMALL_STATE(968)] = 84538, - [SMALL_STATE(969)] = 84605, - [SMALL_STATE(970)] = 84676, - [SMALL_STATE(971)] = 84743, - [SMALL_STATE(972)] = 84810, - [SMALL_STATE(973)] = 84877, - [SMALL_STATE(974)] = 84944, - [SMALL_STATE(975)] = 85011, - [SMALL_STATE(976)] = 85078, - [SMALL_STATE(977)] = 85145, - [SMALL_STATE(978)] = 85212, - [SMALL_STATE(979)] = 85279, - [SMALL_STATE(980)] = 85346, - [SMALL_STATE(981)] = 85413, - [SMALL_STATE(982)] = 85480, - [SMALL_STATE(983)] = 85547, - [SMALL_STATE(984)] = 85614, - [SMALL_STATE(985)] = 85681, - [SMALL_STATE(986)] = 85748, - [SMALL_STATE(987)] = 85815, - [SMALL_STATE(988)] = 85882, - [SMALL_STATE(989)] = 85949, - [SMALL_STATE(990)] = 86016, - [SMALL_STATE(991)] = 86083, - [SMALL_STATE(992)] = 86150, - [SMALL_STATE(993)] = 86217, - [SMALL_STATE(994)] = 86284, - [SMALL_STATE(995)] = 86351, - [SMALL_STATE(996)] = 86418, - [SMALL_STATE(997)] = 86485, - [SMALL_STATE(998)] = 86552, - [SMALL_STATE(999)] = 86619, - [SMALL_STATE(1000)] = 86686, - [SMALL_STATE(1001)] = 86764, - [SMALL_STATE(1002)] = 86836, - [SMALL_STATE(1003)] = 86908, - [SMALL_STATE(1004)] = 86980, - [SMALL_STATE(1005)] = 87041, - [SMALL_STATE(1006)] = 87102, - [SMALL_STATE(1007)] = 87197, - [SMALL_STATE(1008)] = 87258, - [SMALL_STATE(1009)] = 87331, - [SMALL_STATE(1010)] = 87396, - [SMALL_STATE(1011)] = 87473, - [SMALL_STATE(1012)] = 87558, - [SMALL_STATE(1013)] = 87641, - [SMALL_STATE(1014)] = 87702, - [SMALL_STATE(1015)] = 87799, - [SMALL_STATE(1016)] = 87868, - [SMALL_STATE(1017)] = 87949, - [SMALL_STATE(1018)] = 88012, - [SMALL_STATE(1019)] = 88091, - [SMALL_STATE(1020)] = 88160, - [SMALL_STATE(1021)] = 88221, - [SMALL_STATE(1022)] = 88316, - [SMALL_STATE(1023)] = 88377, - [SMALL_STATE(1024)] = 88442, - [SMALL_STATE(1025)] = 88505, - [SMALL_STATE(1026)] = 88568, - [SMALL_STATE(1027)] = 88665, - [SMALL_STATE(1028)] = 88762, - [SMALL_STATE(1029)] = 88825, - [SMALL_STATE(1030)] = 88896, - [SMALL_STATE(1031)] = 88957, - [SMALL_STATE(1032)] = 89020, - [SMALL_STATE(1033)] = 89081, - [SMALL_STATE(1034)] = 89142, - [SMALL_STATE(1035)] = 89203, - [SMALL_STATE(1036)] = 89276, - [SMALL_STATE(1037)] = 89349, - [SMALL_STATE(1038)] = 89410, - [SMALL_STATE(1039)] = 89475, - [SMALL_STATE(1040)] = 89540, - [SMALL_STATE(1041)] = 89615, - [SMALL_STATE(1042)] = 89678, - [SMALL_STATE(1043)] = 89739, - [SMALL_STATE(1044)] = 89800, - [SMALL_STATE(1045)] = 89861, - [SMALL_STATE(1046)] = 89922, - [SMALL_STATE(1047)] = 89982, - [SMALL_STATE(1048)] = 90040, - [SMALL_STATE(1049)] = 90100, - [SMALL_STATE(1050)] = 90158, - [SMALL_STATE(1051)] = 90216, - [SMALL_STATE(1052)] = 90276, - [SMALL_STATE(1053)] = 90334, - [SMALL_STATE(1054)] = 90394, - [SMALL_STATE(1055)] = 90454, - [SMALL_STATE(1056)] = 90512, - [SMALL_STATE(1057)] = 90570, - [SMALL_STATE(1058)] = 90628, - [SMALL_STATE(1059)] = 90686, - [SMALL_STATE(1060)] = 90744, - [SMALL_STATE(1061)] = 90802, - [SMALL_STATE(1062)] = 90860, - [SMALL_STATE(1063)] = 90920, - [SMALL_STATE(1064)] = 90978, - [SMALL_STATE(1065)] = 91038, - [SMALL_STATE(1066)] = 91098, - [SMALL_STATE(1067)] = 91166, - [SMALL_STATE(1068)] = 91224, - [SMALL_STATE(1069)] = 91284, - [SMALL_STATE(1070)] = 91341, - [SMALL_STATE(1071)] = 91398, - [SMALL_STATE(1072)] = 91455, - [SMALL_STATE(1073)] = 91512, - [SMALL_STATE(1074)] = 91569, - [SMALL_STATE(1075)] = 91626, - [SMALL_STATE(1076)] = 91683, - [SMALL_STATE(1077)] = 91740, - [SMALL_STATE(1078)] = 91797, - [SMALL_STATE(1079)] = 91862, - [SMALL_STATE(1080)] = 91919, - [SMALL_STATE(1081)] = 91980, - [SMALL_STATE(1082)] = 92037, - [SMALL_STATE(1083)] = 92094, - [SMALL_STATE(1084)] = 92151, - [SMALL_STATE(1085)] = 92212, - [SMALL_STATE(1086)] = 92277, - [SMALL_STATE(1087)] = 92334, - [SMALL_STATE(1088)] = 92391, - [SMALL_STATE(1089)] = 92448, - [SMALL_STATE(1090)] = 92513, - [SMALL_STATE(1091)] = 92578, - [SMALL_STATE(1092)] = 92635, - [SMALL_STATE(1093)] = 92692, - [SMALL_STATE(1094)] = 92749, - [SMALL_STATE(1095)] = 92806, - [SMALL_STATE(1096)] = 92863, - [SMALL_STATE(1097)] = 92920, - [SMALL_STATE(1098)] = 92985, - [SMALL_STATE(1099)] = 93042, - [SMALL_STATE(1100)] = 93099, - [SMALL_STATE(1101)] = 93156, - [SMALL_STATE(1102)] = 93213, - [SMALL_STATE(1103)] = 93278, - [SMALL_STATE(1104)] = 93335, - [SMALL_STATE(1105)] = 93400, - [SMALL_STATE(1106)] = 93457, - [SMALL_STATE(1107)] = 93514, - [SMALL_STATE(1108)] = 93571, - [SMALL_STATE(1109)] = 93628, - [SMALL_STATE(1110)] = 93685, - [SMALL_STATE(1111)] = 93742, - [SMALL_STATE(1112)] = 93799, - [SMALL_STATE(1113)] = 93860, - [SMALL_STATE(1114)] = 93917, - [SMALL_STATE(1115)] = 93974, - [SMALL_STATE(1116)] = 94031, - [SMALL_STATE(1117)] = 94088, - [SMALL_STATE(1118)] = 94145, - [SMALL_STATE(1119)] = 94210, - [SMALL_STATE(1120)] = 94267, - [SMALL_STATE(1121)] = 94324, - [SMALL_STATE(1122)] = 94381, - [SMALL_STATE(1123)] = 94438, - [SMALL_STATE(1124)] = 94495, - [SMALL_STATE(1125)] = 94552, - [SMALL_STATE(1126)] = 94609, - [SMALL_STATE(1127)] = 94666, - [SMALL_STATE(1128)] = 94723, - [SMALL_STATE(1129)] = 94780, - [SMALL_STATE(1130)] = 94837, - [SMALL_STATE(1131)] = 94901, - [SMALL_STATE(1132)] = 94965, - [SMALL_STATE(1133)] = 95029, - [SMALL_STATE(1134)] = 95083, - [SMALL_STATE(1135)] = 95137, - [SMALL_STATE(1136)] = 95199, - [SMALL_STATE(1137)] = 95265, - [SMALL_STATE(1138)] = 95319, - [SMALL_STATE(1139)] = 95385, - [SMALL_STATE(1140)] = 95447, - [SMALL_STATE(1141)] = 95501, - [SMALL_STATE(1142)] = 95555, - [SMALL_STATE(1143)] = 95617, - [SMALL_STATE(1144)] = 95679, - [SMALL_STATE(1145)] = 95741, - [SMALL_STATE(1146)] = 95795, - [SMALL_STATE(1147)] = 95860, - [SMALL_STATE(1148)] = 95925, - [SMALL_STATE(1149)] = 95986, - [SMALL_STATE(1150)] = 96051, - [SMALL_STATE(1151)] = 96112, - [SMALL_STATE(1152)] = 96175, - [SMALL_STATE(1153)] = 96240, - [SMALL_STATE(1154)] = 96291, - [SMALL_STATE(1155)] = 96342, - [SMALL_STATE(1156)] = 96393, - [SMALL_STATE(1157)] = 96444, - [SMALL_STATE(1158)] = 96505, - [SMALL_STATE(1159)] = 96566, - [SMALL_STATE(1160)] = 96619, - [SMALL_STATE(1161)] = 96682, - [SMALL_STATE(1162)] = 96733, - [SMALL_STATE(1163)] = 96821, - [SMALL_STATE(1164)] = 96887, - [SMALL_STATE(1165)] = 96937, - [SMALL_STATE(1166)] = 96987, - [SMALL_STATE(1167)] = 97041, - [SMALL_STATE(1168)] = 97099, - [SMALL_STATE(1169)] = 97149, - [SMALL_STATE(1170)] = 97209, - [SMALL_STATE(1171)] = 97265, - [SMALL_STATE(1172)] = 97321, - [SMALL_STATE(1173)] = 97379, - [SMALL_STATE(1174)] = 97431, - [SMALL_STATE(1175)] = 97483, - [SMALL_STATE(1176)] = 97541, - [SMALL_STATE(1177)] = 97591, - [SMALL_STATE(1178)] = 97651, - [SMALL_STATE(1179)] = 97701, - [SMALL_STATE(1180)] = 97759, - [SMALL_STATE(1181)] = 97847, - [SMALL_STATE(1182)] = 97899, - [SMALL_STATE(1183)] = 97959, - [SMALL_STATE(1184)] = 98029, - [SMALL_STATE(1185)] = 98101, - [SMALL_STATE(1186)] = 98175, - [SMALL_STATE(1187)] = 98251, - [SMALL_STATE(1188)] = 98307, - [SMALL_STATE(1189)] = 98365, - [SMALL_STATE(1190)] = 98427, - [SMALL_STATE(1191)] = 98489, - [SMALL_STATE(1192)] = 98543, - [SMALL_STATE(1193)] = 98595, - [SMALL_STATE(1194)] = 98653, - [SMALL_STATE(1195)] = 98713, - [SMALL_STATE(1196)] = 98801, - [SMALL_STATE(1197)] = 98863, - [SMALL_STATE(1198)] = 98919, - [SMALL_STATE(1199)] = 98975, - [SMALL_STATE(1200)] = 99025, - [SMALL_STATE(1201)] = 99085, - [SMALL_STATE(1202)] = 99171, - [SMALL_STATE(1203)] = 99229, - [SMALL_STATE(1204)] = 99291, - [SMALL_STATE(1205)] = 99341, - [SMALL_STATE(1206)] = 99401, - [SMALL_STATE(1207)] = 99459, - [SMALL_STATE(1208)] = 99517, - [SMALL_STATE(1209)] = 99579, - [SMALL_STATE(1210)] = 99629, - [SMALL_STATE(1211)] = 99715, - [SMALL_STATE(1212)] = 99773, - [SMALL_STATE(1213)] = 99820, - [SMALL_STATE(1214)] = 99867, - [SMALL_STATE(1215)] = 99914, - [SMALL_STATE(1216)] = 99961, - [SMALL_STATE(1217)] = 100008, - [SMALL_STATE(1218)] = 100055, - [SMALL_STATE(1219)] = 100104, - [SMALL_STATE(1220)] = 100153, - [SMALL_STATE(1221)] = 100202, - [SMALL_STATE(1222)] = 100251, - [SMALL_STATE(1223)] = 100300, - [SMALL_STATE(1224)] = 100357, - [SMALL_STATE(1225)] = 100406, - [SMALL_STATE(1226)] = 100455, - [SMALL_STATE(1227)] = 100506, - [SMALL_STATE(1228)] = 100553, - [SMALL_STATE(1229)] = 100600, - [SMALL_STATE(1230)] = 100647, - [SMALL_STATE(1231)] = 100694, - [SMALL_STATE(1232)] = 100741, - [SMALL_STATE(1233)] = 100802, - [SMALL_STATE(1234)] = 100849, - [SMALL_STATE(1235)] = 100896, - [SMALL_STATE(1236)] = 100955, - [SMALL_STATE(1237)] = 101002, - [SMALL_STATE(1238)] = 101051, - [SMALL_STATE(1239)] = 101098, - [SMALL_STATE(1240)] = 101145, - [SMALL_STATE(1241)] = 101192, - [SMALL_STATE(1242)] = 101239, - [SMALL_STATE(1243)] = 101296, - [SMALL_STATE(1244)] = 101343, - [SMALL_STATE(1245)] = 101390, - [SMALL_STATE(1246)] = 101437, - [SMALL_STATE(1247)] = 101486, - [SMALL_STATE(1248)] = 101533, - [SMALL_STATE(1249)] = 101580, - [SMALL_STATE(1250)] = 101627, - [SMALL_STATE(1251)] = 101676, - [SMALL_STATE(1252)] = 101735, - [SMALL_STATE(1253)] = 101786, - [SMALL_STATE(1254)] = 101835, - [SMALL_STATE(1255)] = 101894, - [SMALL_STATE(1256)] = 101941, - [SMALL_STATE(1257)] = 101994, - [SMALL_STATE(1258)] = 102041, - [SMALL_STATE(1259)] = 102088, - [SMALL_STATE(1260)] = 102135, - [SMALL_STATE(1261)] = 102182, - [SMALL_STATE(1262)] = 102231, - [SMALL_STATE(1263)] = 102278, - [SMALL_STATE(1264)] = 102325, - [SMALL_STATE(1265)] = 102372, - [SMALL_STATE(1266)] = 102419, - [SMALL_STATE(1267)] = 102466, - [SMALL_STATE(1268)] = 102515, - [SMALL_STATE(1269)] = 102562, - [SMALL_STATE(1270)] = 102609, - [SMALL_STATE(1271)] = 102656, - [SMALL_STATE(1272)] = 102703, - [SMALL_STATE(1273)] = 102750, - [SMALL_STATE(1274)] = 102797, - [SMALL_STATE(1275)] = 102844, - [SMALL_STATE(1276)] = 102891, - [SMALL_STATE(1277)] = 102938, - [SMALL_STATE(1278)] = 102987, - [SMALL_STATE(1279)] = 103044, - [SMALL_STATE(1280)] = 103091, - [SMALL_STATE(1281)] = 103140, - [SMALL_STATE(1282)] = 103187, - [SMALL_STATE(1283)] = 103234, - [SMALL_STATE(1284)] = 103281, - [SMALL_STATE(1285)] = 103328, - [SMALL_STATE(1286)] = 103375, - [SMALL_STATE(1287)] = 103422, - [SMALL_STATE(1288)] = 103469, - [SMALL_STATE(1289)] = 103516, - [SMALL_STATE(1290)] = 103569, - [SMALL_STATE(1291)] = 103618, - [SMALL_STATE(1292)] = 103669, - [SMALL_STATE(1293)] = 103718, - [SMALL_STATE(1294)] = 103769, - [SMALL_STATE(1295)] = 103826, - [SMALL_STATE(1296)] = 103873, - [SMALL_STATE(1297)] = 103920, - [SMALL_STATE(1298)] = 103967, - [SMALL_STATE(1299)] = 104014, - [SMALL_STATE(1300)] = 104061, - [SMALL_STATE(1301)] = 104108, - [SMALL_STATE(1302)] = 104155, - [SMALL_STATE(1303)] = 104202, - [SMALL_STATE(1304)] = 104249, - [SMALL_STATE(1305)] = 104298, - [SMALL_STATE(1306)] = 104344, - [SMALL_STATE(1307)] = 104412, - [SMALL_STATE(1308)] = 104458, - [SMALL_STATE(1309)] = 104504, - [SMALL_STATE(1310)] = 104550, - [SMALL_STATE(1311)] = 104610, - [SMALL_STATE(1312)] = 104656, - [SMALL_STATE(1313)] = 104702, - [SMALL_STATE(1314)] = 104748, - [SMALL_STATE(1315)] = 104794, - [SMALL_STATE(1316)] = 104840, - [SMALL_STATE(1317)] = 104886, - [SMALL_STATE(1318)] = 104932, - [SMALL_STATE(1319)] = 104978, - [SMALL_STATE(1320)] = 105024, - [SMALL_STATE(1321)] = 105070, - [SMALL_STATE(1322)] = 105116, - [SMALL_STATE(1323)] = 105162, - [SMALL_STATE(1324)] = 105208, - [SMALL_STATE(1325)] = 105258, - [SMALL_STATE(1326)] = 105308, - [SMALL_STATE(1327)] = 105356, - [SMALL_STATE(1328)] = 105402, - [SMALL_STATE(1329)] = 105452, - [SMALL_STATE(1330)] = 105498, - [SMALL_STATE(1331)] = 105544, - [SMALL_STATE(1332)] = 105590, - [SMALL_STATE(1333)] = 105636, - [SMALL_STATE(1334)] = 105682, - [SMALL_STATE(1335)] = 105766, - [SMALL_STATE(1336)] = 105812, - [SMALL_STATE(1337)] = 105858, - [SMALL_STATE(1338)] = 105904, - [SMALL_STATE(1339)] = 105958, - [SMALL_STATE(1340)] = 106004, - [SMALL_STATE(1341)] = 106050, - [SMALL_STATE(1342)] = 106096, - [SMALL_STATE(1343)] = 106142, - [SMALL_STATE(1344)] = 106192, - [SMALL_STATE(1345)] = 106238, - [SMALL_STATE(1346)] = 106284, - [SMALL_STATE(1347)] = 106330, - [SMALL_STATE(1348)] = 106376, - [SMALL_STATE(1349)] = 106422, - [SMALL_STATE(1350)] = 106468, - [SMALL_STATE(1351)] = 106514, - [SMALL_STATE(1352)] = 106564, - [SMALL_STATE(1353)] = 106610, - [SMALL_STATE(1354)] = 106696, - [SMALL_STATE(1355)] = 106742, - [SMALL_STATE(1356)] = 106788, - [SMALL_STATE(1357)] = 106834, - [SMALL_STATE(1358)] = 106880, - [SMALL_STATE(1359)] = 106926, - [SMALL_STATE(1360)] = 106978, - [SMALL_STATE(1361)] = 107024, - [SMALL_STATE(1362)] = 107070, - [SMALL_STATE(1363)] = 107116, - [SMALL_STATE(1364)] = 107162, - [SMALL_STATE(1365)] = 107208, - [SMALL_STATE(1366)] = 107254, - [SMALL_STATE(1367)] = 107300, - [SMALL_STATE(1368)] = 107346, - [SMALL_STATE(1369)] = 107392, - [SMALL_STATE(1370)] = 107438, - [SMALL_STATE(1371)] = 107484, - [SMALL_STATE(1372)] = 107534, - [SMALL_STATE(1373)] = 107580, - [SMALL_STATE(1374)] = 107626, - [SMALL_STATE(1375)] = 107672, - [SMALL_STATE(1376)] = 107718, - [SMALL_STATE(1377)] = 107764, - [SMALL_STATE(1378)] = 107810, - [SMALL_STATE(1379)] = 107866, - [SMALL_STATE(1380)] = 107924, - [SMALL_STATE(1381)] = 107970, - [SMALL_STATE(1382)] = 108022, - [SMALL_STATE(1383)] = 108068, - [SMALL_STATE(1384)] = 108128, - [SMALL_STATE(1385)] = 108188, - [SMALL_STATE(1386)] = 108248, - [SMALL_STATE(1387)] = 108304, - [SMALL_STATE(1388)] = 108388, - [SMALL_STATE(1389)] = 108452, - [SMALL_STATE(1390)] = 108526, - [SMALL_STATE(1391)] = 108612, - [SMALL_STATE(1392)] = 108698, - [SMALL_STATE(1393)] = 108770, - [SMALL_STATE(1394)] = 108840, - [SMALL_STATE(1395)] = 108887, - [SMALL_STATE(1396)] = 108934, - [SMALL_STATE(1397)] = 108981, - [SMALL_STATE(1398)] = 109030, - [SMALL_STATE(1399)] = 109077, - [SMALL_STATE(1400)] = 109124, - [SMALL_STATE(1401)] = 109177, - [SMALL_STATE(1402)] = 109234, - [SMALL_STATE(1403)] = 109279, - [SMALL_STATE(1404)] = 109328, - [SMALL_STATE(1405)] = 109375, - [SMALL_STATE(1406)] = 109422, - [SMALL_STATE(1407)] = 109469, - [SMALL_STATE(1408)] = 109520, - [SMALL_STATE(1409)] = 109599, - [SMALL_STATE(1410)] = 109646, - [SMALL_STATE(1411)] = 109693, - [SMALL_STATE(1412)] = 109738, - [SMALL_STATE(1413)] = 109785, - [SMALL_STATE(1414)] = 109832, - [SMALL_STATE(1415)] = 109879, - [SMALL_STATE(1416)] = 109930, - [SMALL_STATE(1417)] = 110009, - [SMALL_STATE(1418)] = 110056, - [SMALL_STATE(1419)] = 110103, - [SMALL_STATE(1420)] = 110158, - [SMALL_STATE(1421)] = 110217, - [SMALL_STATE(1422)] = 110262, - [SMALL_STATE(1423)] = 110309, - [SMALL_STATE(1424)] = 110356, - [SMALL_STATE(1425)] = 110403, - [SMALL_STATE(1426)] = 110448, - [SMALL_STATE(1427)] = 110495, - [SMALL_STATE(1428)] = 110544, - [SMALL_STATE(1429)] = 110593, - [SMALL_STATE(1430)] = 110642, - [SMALL_STATE(1431)] = 110689, - [SMALL_STATE(1432)] = 110748, - [SMALL_STATE(1433)] = 110829, - [SMALL_STATE(1434)] = 110910, - [SMALL_STATE(1435)] = 110955, - [SMALL_STATE(1436)] = 111020, - [SMALL_STATE(1437)] = 111065, - [SMALL_STATE(1438)] = 111132, - [SMALL_STATE(1439)] = 111201, - [SMALL_STATE(1440)] = 111248, - [SMALL_STATE(1441)] = 111319, - [SMALL_STATE(1442)] = 111382, - [SMALL_STATE(1443)] = 111441, - [SMALL_STATE(1444)] = 111500, - [SMALL_STATE(1445)] = 111549, - [SMALL_STATE(1446)] = 111594, - [SMALL_STATE(1447)] = 111647, - [SMALL_STATE(1448)] = 111704, - [SMALL_STATE(1449)] = 111749, - [SMALL_STATE(1450)] = 111798, - [SMALL_STATE(1451)] = 111845, - [SMALL_STATE(1452)] = 111890, - [SMALL_STATE(1453)] = 111935, - [SMALL_STATE(1454)] = 111982, - [SMALL_STATE(1455)] = 112029, - [SMALL_STATE(1456)] = 112078, - [SMALL_STATE(1457)] = 112125, - [SMALL_STATE(1458)] = 112174, - [SMALL_STATE(1459)] = 112219, - [SMALL_STATE(1460)] = 112264, - [SMALL_STATE(1461)] = 112311, - [SMALL_STATE(1462)] = 112358, - [SMALL_STATE(1463)] = 112439, - [SMALL_STATE(1464)] = 112494, - [SMALL_STATE(1465)] = 112541, - [SMALL_STATE(1466)] = 112588, - [SMALL_STATE(1467)] = 112635, - [SMALL_STATE(1468)] = 112681, - [SMALL_STATE(1469)] = 112729, - [SMALL_STATE(1470)] = 112775, - [SMALL_STATE(1471)] = 112823, - [SMALL_STATE(1472)] = 112867, - [SMALL_STATE(1473)] = 112913, - [SMALL_STATE(1474)] = 112959, - [SMALL_STATE(1475)] = 113013, - [SMALL_STATE(1476)] = 113095, - [SMALL_STATE(1477)] = 113145, - [SMALL_STATE(1478)] = 113193, - [SMALL_STATE(1479)] = 113245, - [SMALL_STATE(1480)] = 113291, - [SMALL_STATE(1481)] = 113335, - [SMALL_STATE(1482)] = 113379, - [SMALL_STATE(1483)] = 113423, - [SMALL_STATE(1484)] = 113475, - [SMALL_STATE(1485)] = 113519, - [SMALL_STATE(1486)] = 113567, - [SMALL_STATE(1487)] = 113611, - [SMALL_STATE(1488)] = 113669, - [SMALL_STATE(1489)] = 113727, - [SMALL_STATE(1490)] = 113789, - [SMALL_STATE(1491)] = 113861, - [SMALL_STATE(1492)] = 113931, - [SMALL_STATE(1493)] = 113999, - [SMALL_STATE(1494)] = 114065, - [SMALL_STATE(1495)] = 114113, - [SMALL_STATE(1496)] = 114159, - [SMALL_STATE(1497)] = 114237, - [SMALL_STATE(1498)] = 114305, - [SMALL_STATE(1499)] = 114351, - [SMALL_STATE(1500)] = 114429, - [SMALL_STATE(1501)] = 114477, - [SMALL_STATE(1502)] = 114523, - [SMALL_STATE(1503)] = 114573, - [SMALL_STATE(1504)] = 114619, - [SMALL_STATE(1505)] = 114665, - [SMALL_STATE(1506)] = 114747, - [SMALL_STATE(1507)] = 114829, - [SMALL_STATE(1508)] = 114875, - [SMALL_STATE(1509)] = 114921, - [SMALL_STATE(1510)] = 114975, - [SMALL_STATE(1511)] = 115021, - [SMALL_STATE(1512)] = 115067, - [SMALL_STATE(1513)] = 115125, - [SMALL_STATE(1514)] = 115171, - [SMALL_STATE(1515)] = 115233, - [SMALL_STATE(1516)] = 115297, - [SMALL_STATE(1517)] = 115343, - [SMALL_STATE(1518)] = 115389, - [SMALL_STATE(1519)] = 115455, - [SMALL_STATE(1520)] = 115523, - [SMALL_STATE(1521)] = 115583, - [SMALL_STATE(1522)] = 115629, - [SMALL_STATE(1523)] = 115683, - [SMALL_STATE(1524)] = 115741, - [SMALL_STATE(1525)] = 115799, - [SMALL_STATE(1526)] = 115849, - [SMALL_STATE(1527)] = 115897, - [SMALL_STATE(1528)] = 115941, - [SMALL_STATE(1529)] = 115989, - [SMALL_STATE(1530)] = 116047, - [SMALL_STATE(1531)] = 116099, - [SMALL_STATE(1532)] = 116145, - [SMALL_STATE(1533)] = 116193, - [SMALL_STATE(1534)] = 116251, - [SMALL_STATE(1535)] = 116297, - [SMALL_STATE(1536)] = 116343, - [SMALL_STATE(1537)] = 116423, - [SMALL_STATE(1538)] = 116471, - [SMALL_STATE(1539)] = 116529, - [SMALL_STATE(1540)] = 116577, - [SMALL_STATE(1541)] = 116655, - [SMALL_STATE(1542)] = 116703, - [SMALL_STATE(1543)] = 116749, - [SMALL_STATE(1544)] = 116795, - [SMALL_STATE(1545)] = 116841, - [SMALL_STATE(1546)] = 116889, - [SMALL_STATE(1547)] = 116935, - [SMALL_STATE(1548)] = 116981, - [SMALL_STATE(1549)] = 117035, - [SMALL_STATE(1550)] = 117081, - [SMALL_STATE(1551)] = 117127, - [SMALL_STATE(1552)] = 117203, - [SMALL_STATE(1553)] = 117261, - [SMALL_STATE(1554)] = 117307, - [SMALL_STATE(1555)] = 117353, - [SMALL_STATE(1556)] = 117399, - [SMALL_STATE(1557)] = 117447, - [SMALL_STATE(1558)] = 117495, - [SMALL_STATE(1559)] = 117539, - [SMALL_STATE(1560)] = 117587, - [SMALL_STATE(1561)] = 117631, - [SMALL_STATE(1562)] = 117689, - [SMALL_STATE(1563)] = 117747, - [SMALL_STATE(1564)] = 117795, - [SMALL_STATE(1565)] = 117873, - [SMALL_STATE(1566)] = 117923, - [SMALL_STATE(1567)] = 117967, - [SMALL_STATE(1568)] = 118013, - [SMALL_STATE(1569)] = 118059, - [SMALL_STATE(1570)] = 118137, - [SMALL_STATE(1571)] = 118185, - [SMALL_STATE(1572)] = 118265, - [SMALL_STATE(1573)] = 118327, - [SMALL_STATE(1574)] = 118397, - [SMALL_STATE(1575)] = 118445, - [SMALL_STATE(1576)] = 118521, - [SMALL_STATE(1577)] = 118601, - [SMALL_STATE(1578)] = 118647, - [SMALL_STATE(1579)] = 118699, - [SMALL_STATE(1580)] = 118743, - [SMALL_STATE(1581)] = 118789, - [SMALL_STATE(1582)] = 118835, - [SMALL_STATE(1583)] = 118887, - [SMALL_STATE(1584)] = 118933, - [SMALL_STATE(1585)] = 118979, - [SMALL_STATE(1586)] = 119025, - [SMALL_STATE(1587)] = 119071, - [SMALL_STATE(1588)] = 119117, - [SMALL_STATE(1589)] = 119163, - [SMALL_STATE(1590)] = 119211, - [SMALL_STATE(1591)] = 119269, - [SMALL_STATE(1592)] = 119313, - [SMALL_STATE(1593)] = 119359, - [SMALL_STATE(1594)] = 119423, - [SMALL_STATE(1595)] = 119503, - [SMALL_STATE(1596)] = 119549, - [SMALL_STATE(1597)] = 119601, - [SMALL_STATE(1598)] = 119649, - [SMALL_STATE(1599)] = 119699, - [SMALL_STATE(1600)] = 119745, - [SMALL_STATE(1601)] = 119811, - [SMALL_STATE(1602)] = 119861, - [SMALL_STATE(1603)] = 119941, - [SMALL_STATE(1604)] = 119986, - [SMALL_STATE(1605)] = 120065, - [SMALL_STATE(1606)] = 120110, - [SMALL_STATE(1607)] = 120155, - [SMALL_STATE(1608)] = 120198, - [SMALL_STATE(1609)] = 120243, - [SMALL_STATE(1610)] = 120288, - [SMALL_STATE(1611)] = 120333, - [SMALL_STATE(1612)] = 120376, - [SMALL_STATE(1613)] = 120433, - [SMALL_STATE(1614)] = 120478, - [SMALL_STATE(1615)] = 120521, - [SMALL_STATE(1616)] = 120564, - [SMALL_STATE(1617)] = 120607, - [SMALL_STATE(1618)] = 120660, - [SMALL_STATE(1619)] = 120737, - [SMALL_STATE(1620)] = 120784, - [SMALL_STATE(1621)] = 120827, - [SMALL_STATE(1622)] = 120874, - [SMALL_STATE(1623)] = 120921, - [SMALL_STATE(1624)] = 120968, - [SMALL_STATE(1625)] = 121011, - [SMALL_STATE(1626)] = 121054, - [SMALL_STATE(1627)] = 121097, - [SMALL_STATE(1628)] = 121140, - [SMALL_STATE(1629)] = 121183, - [SMALL_STATE(1630)] = 121226, - [SMALL_STATE(1631)] = 121271, - [SMALL_STATE(1632)] = 121314, - [SMALL_STATE(1633)] = 121357, - [SMALL_STATE(1634)] = 121400, - [SMALL_STATE(1635)] = 121443, - [SMALL_STATE(1636)] = 121486, - [SMALL_STATE(1637)] = 121529, - [SMALL_STATE(1638)] = 121572, - [SMALL_STATE(1639)] = 121615, - [SMALL_STATE(1640)] = 121658, - [SMALL_STATE(1641)] = 121701, - [SMALL_STATE(1642)] = 121750, - [SMALL_STATE(1643)] = 121793, - [SMALL_STATE(1644)] = 121836, - [SMALL_STATE(1645)] = 121879, - [SMALL_STATE(1646)] = 121922, - [SMALL_STATE(1647)] = 121965, - [SMALL_STATE(1648)] = 122012, - [SMALL_STATE(1649)] = 122055, - [SMALL_STATE(1650)] = 122098, - [SMALL_STATE(1651)] = 122143, - [SMALL_STATE(1652)] = 122188, - [SMALL_STATE(1653)] = 122231, - [SMALL_STATE(1654)] = 122274, - [SMALL_STATE(1655)] = 122343, - [SMALL_STATE(1656)] = 122422, - [SMALL_STATE(1657)] = 122465, - [SMALL_STATE(1658)] = 122508, - [SMALL_STATE(1659)] = 122553, - [SMALL_STATE(1660)] = 122600, - [SMALL_STATE(1661)] = 122643, - [SMALL_STATE(1662)] = 122686, - [SMALL_STATE(1663)] = 122729, - [SMALL_STATE(1664)] = 122774, - [SMALL_STATE(1665)] = 122817, - [SMALL_STATE(1666)] = 122860, - [SMALL_STATE(1667)] = 122903, - [SMALL_STATE(1668)] = 122946, - [SMALL_STATE(1669)] = 122989, - [SMALL_STATE(1670)] = 123052, - [SMALL_STATE(1671)] = 123095, - [SMALL_STATE(1672)] = 123138, - [SMALL_STATE(1673)] = 123203, - [SMALL_STATE(1674)] = 123270, - [SMALL_STATE(1675)] = 123315, - [SMALL_STATE(1676)] = 123358, - [SMALL_STATE(1677)] = 123401, - [SMALL_STATE(1678)] = 123444, - [SMALL_STATE(1679)] = 123487, - [SMALL_STATE(1680)] = 123566, - [SMALL_STATE(1681)] = 123611, - [SMALL_STATE(1682)] = 123654, - [SMALL_STATE(1683)] = 123697, - [SMALL_STATE(1684)] = 123740, - [SMALL_STATE(1685)] = 123801, - [SMALL_STATE(1686)] = 123844, - [SMALL_STATE(1687)] = 123887, - [SMALL_STATE(1688)] = 123930, - [SMALL_STATE(1689)] = 123973, - [SMALL_STATE(1690)] = 124018, - [SMALL_STATE(1691)] = 124075, - [SMALL_STATE(1692)] = 124132, - [SMALL_STATE(1693)] = 124175, - [SMALL_STATE(1694)] = 124218, - [SMALL_STATE(1695)] = 124263, - [SMALL_STATE(1696)] = 124310, - [SMALL_STATE(1697)] = 124355, - [SMALL_STATE(1698)] = 124398, - [SMALL_STATE(1699)] = 124451, - [SMALL_STATE(1700)] = 124502, - [SMALL_STATE(1701)] = 124545, - [SMALL_STATE(1702)] = 124590, - [SMALL_STATE(1703)] = 124633, - [SMALL_STATE(1704)] = 124678, - [SMALL_STATE(1705)] = 124729, - [SMALL_STATE(1706)] = 124776, - [SMALL_STATE(1707)] = 124819, - [SMALL_STATE(1708)] = 124862, - [SMALL_STATE(1709)] = 124907, - [SMALL_STATE(1710)] = 124952, - [SMALL_STATE(1711)] = 124995, - [SMALL_STATE(1712)] = 125038, - [SMALL_STATE(1713)] = 125083, - [SMALL_STATE(1714)] = 125126, - [SMALL_STATE(1715)] = 125169, - [SMALL_STATE(1716)] = 125214, - [SMALL_STATE(1717)] = 125257, - [SMALL_STATE(1718)] = 125300, - [SMALL_STATE(1719)] = 125345, - [SMALL_STATE(1720)] = 125402, - [SMALL_STATE(1721)] = 125453, - [SMALL_STATE(1722)] = 125496, - [SMALL_STATE(1723)] = 125549, - [SMALL_STATE(1724)] = 125592, - [SMALL_STATE(1725)] = 125635, - [SMALL_STATE(1726)] = 125678, - [SMALL_STATE(1727)] = 125723, - [SMALL_STATE(1728)] = 125766, - [SMALL_STATE(1729)] = 125809, - [SMALL_STATE(1730)] = 125856, - [SMALL_STATE(1731)] = 125899, - [SMALL_STATE(1732)] = 125942, - [SMALL_STATE(1733)] = 125985, - [SMALL_STATE(1734)] = 126028, - [SMALL_STATE(1735)] = 126073, - [SMALL_STATE(1736)] = 126116, - [SMALL_STATE(1737)] = 126159, - [SMALL_STATE(1738)] = 126202, - [SMALL_STATE(1739)] = 126245, - [SMALL_STATE(1740)] = 126290, - [SMALL_STATE(1741)] = 126333, - [SMALL_STATE(1742)] = 126376, - [SMALL_STATE(1743)] = 126419, - [SMALL_STATE(1744)] = 126462, - [SMALL_STATE(1745)] = 126505, - [SMALL_STATE(1746)] = 126548, - [SMALL_STATE(1747)] = 126591, - [SMALL_STATE(1748)] = 126636, - [SMALL_STATE(1749)] = 126679, - [SMALL_STATE(1750)] = 126724, - [SMALL_STATE(1751)] = 126801, - [SMALL_STATE(1752)] = 126844, - [SMALL_STATE(1753)] = 126889, - [SMALL_STATE(1754)] = 126932, - [SMALL_STATE(1755)] = 126975, - [SMALL_STATE(1756)] = 127020, - [SMALL_STATE(1757)] = 127063, - [SMALL_STATE(1758)] = 127106, - [SMALL_STATE(1759)] = 127151, - [SMALL_STATE(1760)] = 127194, - [SMALL_STATE(1761)] = 127237, - [SMALL_STATE(1762)] = 127280, - [SMALL_STATE(1763)] = 127325, - [SMALL_STATE(1764)] = 127368, - [SMALL_STATE(1765)] = 127411, - [SMALL_STATE(1766)] = 127454, - [SMALL_STATE(1767)] = 127499, - [SMALL_STATE(1768)] = 127542, - [SMALL_STATE(1769)] = 127587, - [SMALL_STATE(1770)] = 127632, - [SMALL_STATE(1771)] = 127677, - [SMALL_STATE(1772)] = 127720, - [SMALL_STATE(1773)] = 127763, - [SMALL_STATE(1774)] = 127806, - [SMALL_STATE(1775)] = 127849, - [SMALL_STATE(1776)] = 127892, - [SMALL_STATE(1777)] = 127937, - [SMALL_STATE(1778)] = 127982, - [SMALL_STATE(1779)] = 128027, - [SMALL_STATE(1780)] = 128072, - [SMALL_STATE(1781)] = 128121, - [SMALL_STATE(1782)] = 128164, - [SMALL_STATE(1783)] = 128207, - [SMALL_STATE(1784)] = 128250, - [SMALL_STATE(1785)] = 128293, - [SMALL_STATE(1786)] = 128336, - [SMALL_STATE(1787)] = 128379, - [SMALL_STATE(1788)] = 128422, - [SMALL_STATE(1789)] = 128465, - [SMALL_STATE(1790)] = 128508, - [SMALL_STATE(1791)] = 128551, - [SMALL_STATE(1792)] = 128594, - [SMALL_STATE(1793)] = 128641, - [SMALL_STATE(1794)] = 128684, - [SMALL_STATE(1795)] = 128727, - [SMALL_STATE(1796)] = 128770, - [SMALL_STATE(1797)] = 128813, - [SMALL_STATE(1798)] = 128856, - [SMALL_STATE(1799)] = 128899, - [SMALL_STATE(1800)] = 128942, - [SMALL_STATE(1801)] = 128985, - [SMALL_STATE(1802)] = 129028, - [SMALL_STATE(1803)] = 129073, - [SMALL_STATE(1804)] = 129116, - [SMALL_STATE(1805)] = 129159, - [SMALL_STATE(1806)] = 129203, - [SMALL_STATE(1807)] = 129245, - [SMALL_STATE(1808)] = 129287, - [SMALL_STATE(1809)] = 129329, - [SMALL_STATE(1810)] = 129371, - [SMALL_STATE(1811)] = 129417, - [SMALL_STATE(1812)] = 129459, - [SMALL_STATE(1813)] = 129501, - [SMALL_STATE(1814)] = 129543, - [SMALL_STATE(1815)] = 129585, - [SMALL_STATE(1816)] = 129627, - [SMALL_STATE(1817)] = 129669, - [SMALL_STATE(1818)] = 129711, - [SMALL_STATE(1819)] = 129753, - [SMALL_STATE(1820)] = 129795, - [SMALL_STATE(1821)] = 129837, - [SMALL_STATE(1822)] = 129879, - [SMALL_STATE(1823)] = 129921, - [SMALL_STATE(1824)] = 129963, - [SMALL_STATE(1825)] = 130005, - [SMALL_STATE(1826)] = 130047, - [SMALL_STATE(1827)] = 130089, - [SMALL_STATE(1828)] = 130131, - [SMALL_STATE(1829)] = 130173, - [SMALL_STATE(1830)] = 130219, - [SMALL_STATE(1831)] = 130261, - [SMALL_STATE(1832)] = 130303, - [SMALL_STATE(1833)] = 130345, - [SMALL_STATE(1834)] = 130387, - [SMALL_STATE(1835)] = 130429, - [SMALL_STATE(1836)] = 130471, - [SMALL_STATE(1837)] = 130513, - [SMALL_STATE(1838)] = 130555, - [SMALL_STATE(1839)] = 130597, - [SMALL_STATE(1840)] = 130639, - [SMALL_STATE(1841)] = 130681, - [SMALL_STATE(1842)] = 130723, - [SMALL_STATE(1843)] = 130765, - [SMALL_STATE(1844)] = 130807, - [SMALL_STATE(1845)] = 130849, - [SMALL_STATE(1846)] = 130891, - [SMALL_STATE(1847)] = 130933, - [SMALL_STATE(1848)] = 130975, - [SMALL_STATE(1849)] = 131021, - [SMALL_STATE(1850)] = 131063, - [SMALL_STATE(1851)] = 131105, - [SMALL_STATE(1852)] = 131147, - [SMALL_STATE(1853)] = 131199, - [SMALL_STATE(1854)] = 131243, - [SMALL_STATE(1855)] = 131287, - [SMALL_STATE(1856)] = 131329, - [SMALL_STATE(1857)] = 131371, - [SMALL_STATE(1858)] = 131413, - [SMALL_STATE(1859)] = 131455, - [SMALL_STATE(1860)] = 131499, - [SMALL_STATE(1861)] = 131541, - [SMALL_STATE(1862)] = 131583, - [SMALL_STATE(1863)] = 131625, - [SMALL_STATE(1864)] = 131667, - [SMALL_STATE(1865)] = 131709, - [SMALL_STATE(1866)] = 131755, - [SMALL_STATE(1867)] = 131797, - [SMALL_STATE(1868)] = 131839, - [SMALL_STATE(1869)] = 131881, - [SMALL_STATE(1870)] = 131923, - [SMALL_STATE(1871)] = 131965, - [SMALL_STATE(1872)] = 132007, - [SMALL_STATE(1873)] = 132053, - [SMALL_STATE(1874)] = 132095, - [SMALL_STATE(1875)] = 132137, - [SMALL_STATE(1876)] = 132179, - [SMALL_STATE(1877)] = 132221, - [SMALL_STATE(1878)] = 132263, - [SMALL_STATE(1879)] = 132305, - [SMALL_STATE(1880)] = 132347, - [SMALL_STATE(1881)] = 132391, - [SMALL_STATE(1882)] = 132433, - [SMALL_STATE(1883)] = 132475, - [SMALL_STATE(1884)] = 132517, - [SMALL_STATE(1885)] = 132559, - [SMALL_STATE(1886)] = 132601, - [SMALL_STATE(1887)] = 132643, - [SMALL_STATE(1888)] = 132685, - [SMALL_STATE(1889)] = 132727, - [SMALL_STATE(1890)] = 132769, - [SMALL_STATE(1891)] = 132811, - [SMALL_STATE(1892)] = 132853, - [SMALL_STATE(1893)] = 132895, - [SMALL_STATE(1894)] = 132937, - [SMALL_STATE(1895)] = 132979, - [SMALL_STATE(1896)] = 133021, - [SMALL_STATE(1897)] = 133067, - [SMALL_STATE(1898)] = 133109, - [SMALL_STATE(1899)] = 133151, - [SMALL_STATE(1900)] = 133193, - [SMALL_STATE(1901)] = 133235, - [SMALL_STATE(1902)] = 133277, - [SMALL_STATE(1903)] = 133319, - [SMALL_STATE(1904)] = 133363, - [SMALL_STATE(1905)] = 133405, - [SMALL_STATE(1906)] = 133447, - [SMALL_STATE(1907)] = 133489, - [SMALL_STATE(1908)] = 133531, - [SMALL_STATE(1909)] = 133573, - [SMALL_STATE(1910)] = 133615, - [SMALL_STATE(1911)] = 133657, - [SMALL_STATE(1912)] = 133699, - [SMALL_STATE(1913)] = 133741, - [SMALL_STATE(1914)] = 133783, - [SMALL_STATE(1915)] = 133825, - [SMALL_STATE(1916)] = 133867, - [SMALL_STATE(1917)] = 133909, - [SMALL_STATE(1918)] = 133951, - [SMALL_STATE(1919)] = 133993, - [SMALL_STATE(1920)] = 134035, - [SMALL_STATE(1921)] = 134077, - [SMALL_STATE(1922)] = 134121, - [SMALL_STATE(1923)] = 134165, - [SMALL_STATE(1924)] = 134207, - [SMALL_STATE(1925)] = 134253, - [SMALL_STATE(1926)] = 134295, - [SMALL_STATE(1927)] = 134339, - [SMALL_STATE(1928)] = 134381, - [SMALL_STATE(1929)] = 134423, - [SMALL_STATE(1930)] = 134465, - [SMALL_STATE(1931)] = 134507, - [SMALL_STATE(1932)] = 134549, - [SMALL_STATE(1933)] = 134595, - [SMALL_STATE(1934)] = 134637, - [SMALL_STATE(1935)] = 134679, - [SMALL_STATE(1936)] = 134721, - [SMALL_STATE(1937)] = 134762, - [SMALL_STATE(1938)] = 134803, - [SMALL_STATE(1939)] = 134850, - [SMALL_STATE(1940)] = 134891, - [SMALL_STATE(1941)] = 134948, - [SMALL_STATE(1942)] = 134989, - [SMALL_STATE(1943)] = 135030, - [SMALL_STATE(1944)] = 135071, - [SMALL_STATE(1945)] = 135112, - [SMALL_STATE(1946)] = 135153, - [SMALL_STATE(1947)] = 135200, - [SMALL_STATE(1948)] = 135241, - [SMALL_STATE(1949)] = 135282, - [SMALL_STATE(1950)] = 135323, - [SMALL_STATE(1951)] = 135364, - [SMALL_STATE(1952)] = 135439, - [SMALL_STATE(1953)] = 135514, - [SMALL_STATE(1954)] = 135555, - [SMALL_STATE(1955)] = 135596, - [SMALL_STATE(1956)] = 135637, - [SMALL_STATE(1957)] = 135678, - [SMALL_STATE(1958)] = 135719, - [SMALL_STATE(1959)] = 135760, - [SMALL_STATE(1960)] = 135805, - [SMALL_STATE(1961)] = 135858, - [SMALL_STATE(1962)] = 135933, - [SMALL_STATE(1963)] = 135988, - [SMALL_STATE(1964)] = 136033, - [SMALL_STATE(1965)] = 136074, - [SMALL_STATE(1966)] = 136115, - [SMALL_STATE(1967)] = 136156, - [SMALL_STATE(1968)] = 136199, - [SMALL_STATE(1969)] = 136240, - [SMALL_STATE(1970)] = 136281, - [SMALL_STATE(1971)] = 136332, - [SMALL_STATE(1972)] = 136389, - [SMALL_STATE(1973)] = 136444, - [SMALL_STATE(1974)] = 136485, - [SMALL_STATE(1975)] = 136526, - [SMALL_STATE(1976)] = 136571, - [SMALL_STATE(1977)] = 136616, - [SMALL_STATE(1978)] = 136657, - [SMALL_STATE(1979)] = 136698, - [SMALL_STATE(1980)] = 136743, - [SMALL_STATE(1981)] = 136784, - [SMALL_STATE(1982)] = 136825, - [SMALL_STATE(1983)] = 136874, - [SMALL_STATE(1984)] = 136915, - [SMALL_STATE(1985)] = 136956, - [SMALL_STATE(1986)] = 136997, - [SMALL_STATE(1987)] = 137054, - [SMALL_STATE(1988)] = 137095, - [SMALL_STATE(1989)] = 137136, - [SMALL_STATE(1990)] = 137177, - [SMALL_STATE(1991)] = 137218, - [SMALL_STATE(1992)] = 137259, - [SMALL_STATE(1993)] = 137300, - [SMALL_STATE(1994)] = 137345, - [SMALL_STATE(1995)] = 137386, - [SMALL_STATE(1996)] = 137431, - [SMALL_STATE(1997)] = 137476, - [SMALL_STATE(1998)] = 137517, - [SMALL_STATE(1999)] = 137558, - [SMALL_STATE(2000)] = 137599, - [SMALL_STATE(2001)] = 137674, - [SMALL_STATE(2002)] = 137749, - [SMALL_STATE(2003)] = 137794, - [SMALL_STATE(2004)] = 137835, - [SMALL_STATE(2005)] = 137876, - [SMALL_STATE(2006)] = 137921, - [SMALL_STATE(2007)] = 137982, - [SMALL_STATE(2008)] = 138045, - [SMALL_STATE(2009)] = 138086, - [SMALL_STATE(2010)] = 138127, - [SMALL_STATE(2011)] = 138192, - [SMALL_STATE(2012)] = 138259, - [SMALL_STATE(2013)] = 138300, - [SMALL_STATE(2014)] = 138341, - [SMALL_STATE(2015)] = 138400, - [SMALL_STATE(2016)] = 138455, - [SMALL_STATE(2017)] = 138510, - [SMALL_STATE(2018)] = 138551, - [SMALL_STATE(2019)] = 138592, - [SMALL_STATE(2020)] = 138634, - [SMALL_STATE(2021)] = 138684, - [SMALL_STATE(2022)] = 138726, - [SMALL_STATE(2023)] = 138768, - [SMALL_STATE(2024)] = 138810, - [SMALL_STATE(2025)] = 138852, - [SMALL_STATE(2026)] = 138894, - [SMALL_STATE(2027)] = 138937, - [SMALL_STATE(2028)] = 138980, - [SMALL_STATE(2029)] = 139017, - [SMALL_STATE(2030)] = 139073, - [SMALL_STATE(2031)] = 139129, - [SMALL_STATE(2032)] = 139185, - [SMALL_STATE(2033)] = 139241, - [SMALL_STATE(2034)] = 139297, - [SMALL_STATE(2035)] = 139353, - [SMALL_STATE(2036)] = 139387, - [SMALL_STATE(2037)] = 139443, - [SMALL_STATE(2038)] = 139499, - [SMALL_STATE(2039)] = 139555, - [SMALL_STATE(2040)] = 139611, - [SMALL_STATE(2041)] = 139667, - [SMALL_STATE(2042)] = 139723, - [SMALL_STATE(2043)] = 139779, - [SMALL_STATE(2044)] = 139835, - [SMALL_STATE(2045)] = 139891, - [SMALL_STATE(2046)] = 139947, - [SMALL_STATE(2047)] = 140003, - [SMALL_STATE(2048)] = 140059, - [SMALL_STATE(2049)] = 140115, - [SMALL_STATE(2050)] = 140171, - [SMALL_STATE(2051)] = 140227, - [SMALL_STATE(2052)] = 140283, - [SMALL_STATE(2053)] = 140339, - [SMALL_STATE(2054)] = 140395, - [SMALL_STATE(2055)] = 140451, - [SMALL_STATE(2056)] = 140507, - [SMALL_STATE(2057)] = 140563, - [SMALL_STATE(2058)] = 140619, - [SMALL_STATE(2059)] = 140675, - [SMALL_STATE(2060)] = 140731, - [SMALL_STATE(2061)] = 140787, - [SMALL_STATE(2062)] = 140843, - [SMALL_STATE(2063)] = 140899, - [SMALL_STATE(2064)] = 140955, - [SMALL_STATE(2065)] = 141011, - [SMALL_STATE(2066)] = 141067, - [SMALL_STATE(2067)] = 141123, - [SMALL_STATE(2068)] = 141179, - [SMALL_STATE(2069)] = 141235, - [SMALL_STATE(2070)] = 141291, - [SMALL_STATE(2071)] = 141347, - [SMALL_STATE(2072)] = 141403, - [SMALL_STATE(2073)] = 141459, - [SMALL_STATE(2074)] = 141515, - [SMALL_STATE(2075)] = 141571, - [SMALL_STATE(2076)] = 141627, - [SMALL_STATE(2077)] = 141683, - [SMALL_STATE(2078)] = 141739, - [SMALL_STATE(2079)] = 141795, - [SMALL_STATE(2080)] = 141851, - [SMALL_STATE(2081)] = 141907, - [SMALL_STATE(2082)] = 141963, - [SMALL_STATE(2083)] = 142016, - [SMALL_STATE(2084)] = 142071, - [SMALL_STATE(2085)] = 142124, - [SMALL_STATE(2086)] = 142177, - [SMALL_STATE(2087)] = 142230, - [SMALL_STATE(2088)] = 142283, - [SMALL_STATE(2089)] = 142326, - [SMALL_STATE(2090)] = 142379, - [SMALL_STATE(2091)] = 142432, - [SMALL_STATE(2092)] = 142475, - [SMALL_STATE(2093)] = 142528, - [SMALL_STATE(2094)] = 142583, - [SMALL_STATE(2095)] = 142636, - [SMALL_STATE(2096)] = 142689, - [SMALL_STATE(2097)] = 142742, - [SMALL_STATE(2098)] = 142795, - [SMALL_STATE(2099)] = 142848, - [SMALL_STATE(2100)] = 142901, - [SMALL_STATE(2101)] = 142954, - [SMALL_STATE(2102)] = 143007, - [SMALL_STATE(2103)] = 143060, - [SMALL_STATE(2104)] = 143113, - [SMALL_STATE(2105)] = 143166, - [SMALL_STATE(2106)] = 143221, - [SMALL_STATE(2107)] = 143274, - [SMALL_STATE(2108)] = 143327, - [SMALL_STATE(2109)] = 143380, - [SMALL_STATE(2110)] = 143433, - [SMALL_STATE(2111)] = 143486, - [SMALL_STATE(2112)] = 143539, - [SMALL_STATE(2113)] = 143592, - [SMALL_STATE(2114)] = 143645, - [SMALL_STATE(2115)] = 143698, - [SMALL_STATE(2116)] = 143753, - [SMALL_STATE(2117)] = 143806, - [SMALL_STATE(2118)] = 143859, - [SMALL_STATE(2119)] = 143914, - [SMALL_STATE(2120)] = 143967, - [SMALL_STATE(2121)] = 144020, - [SMALL_STATE(2122)] = 144073, - [SMALL_STATE(2123)] = 144126, - [SMALL_STATE(2124)] = 144179, - [SMALL_STATE(2125)] = 144232, - [SMALL_STATE(2126)] = 144285, - [SMALL_STATE(2127)] = 144340, - [SMALL_STATE(2128)] = 144393, - [SMALL_STATE(2129)] = 144446, - [SMALL_STATE(2130)] = 144499, - [SMALL_STATE(2131)] = 144552, - [SMALL_STATE(2132)] = 144605, - [SMALL_STATE(2133)] = 144658, - [SMALL_STATE(2134)] = 144711, - [SMALL_STATE(2135)] = 144764, - [SMALL_STATE(2136)] = 144819, - [SMALL_STATE(2137)] = 144872, - [SMALL_STATE(2138)] = 144925, - [SMALL_STATE(2139)] = 144978, - [SMALL_STATE(2140)] = 145031, - [SMALL_STATE(2141)] = 145084, - [SMALL_STATE(2142)] = 145137, - [SMALL_STATE(2143)] = 145190, - [SMALL_STATE(2144)] = 145245, - [SMALL_STATE(2145)] = 145298, - [SMALL_STATE(2146)] = 145351, - [SMALL_STATE(2147)] = 145404, - [SMALL_STATE(2148)] = 145457, - [SMALL_STATE(2149)] = 145510, - [SMALL_STATE(2150)] = 145553, - [SMALL_STATE(2151)] = 145608, - [SMALL_STATE(2152)] = 145661, - [SMALL_STATE(2153)] = 145714, - [SMALL_STATE(2154)] = 145767, - [SMALL_STATE(2155)] = 145820, - [SMALL_STATE(2156)] = 145873, - [SMALL_STATE(2157)] = 145928, - [SMALL_STATE(2158)] = 145981, - [SMALL_STATE(2159)] = 146034, - [SMALL_STATE(2160)] = 146077, - [SMALL_STATE(2161)] = 146130, - [SMALL_STATE(2162)] = 146183, - [SMALL_STATE(2163)] = 146236, - [SMALL_STATE(2164)] = 146289, - [SMALL_STATE(2165)] = 146342, - [SMALL_STATE(2166)] = 146395, - [SMALL_STATE(2167)] = 146448, - [SMALL_STATE(2168)] = 146501, - [SMALL_STATE(2169)] = 146554, - [SMALL_STATE(2170)] = 146607, - [SMALL_STATE(2171)] = 146660, - [SMALL_STATE(2172)] = 146713, - [SMALL_STATE(2173)] = 146766, - [SMALL_STATE(2174)] = 146819, - [SMALL_STATE(2175)] = 146872, - [SMALL_STATE(2176)] = 146925, - [SMALL_STATE(2177)] = 146980, - [SMALL_STATE(2178)] = 147033, - [SMALL_STATE(2179)] = 147086, - [SMALL_STATE(2180)] = 147139, - [SMALL_STATE(2181)] = 147184, - [SMALL_STATE(2182)] = 147237, - [SMALL_STATE(2183)] = 147290, - [SMALL_STATE(2184)] = 147343, - [SMALL_STATE(2185)] = 147396, - [SMALL_STATE(2186)] = 147449, - [SMALL_STATE(2187)] = 147502, - [SMALL_STATE(2188)] = 147555, - [SMALL_STATE(2189)] = 147596, - [SMALL_STATE(2190)] = 147637, - [SMALL_STATE(2191)] = 147678, - [SMALL_STATE(2192)] = 147719, - [SMALL_STATE(2193)] = 147757, - [SMALL_STATE(2194)] = 147795, - [SMALL_STATE(2195)] = 147833, - [SMALL_STATE(2196)] = 147871, - [SMALL_STATE(2197)] = 147908, - [SMALL_STATE(2198)] = 147945, - [SMALL_STATE(2199)] = 147982, - [SMALL_STATE(2200)] = 148019, - [SMALL_STATE(2201)] = 148056, - [SMALL_STATE(2202)] = 148093, - [SMALL_STATE(2203)] = 148130, - [SMALL_STATE(2204)] = 148167, - [SMALL_STATE(2205)] = 148204, - [SMALL_STATE(2206)] = 148241, - [SMALL_STATE(2207)] = 148278, - [SMALL_STATE(2208)] = 148315, - [SMALL_STATE(2209)] = 148351, - [SMALL_STATE(2210)] = 148387, - [SMALL_STATE(2211)] = 148423, - [SMALL_STATE(2212)] = 148459, - [SMALL_STATE(2213)] = 148493, - [SMALL_STATE(2214)] = 148527, - [SMALL_STATE(2215)] = 148561, - [SMALL_STATE(2216)] = 148595, - [SMALL_STATE(2217)] = 148642, - [SMALL_STATE(2218)] = 148689, - [SMALL_STATE(2219)] = 148716, - [SMALL_STATE(2220)] = 148763, - [SMALL_STATE(2221)] = 148796, - [SMALL_STATE(2222)] = 148843, - [SMALL_STATE(2223)] = 148870, - [SMALL_STATE(2224)] = 148899, - [SMALL_STATE(2225)] = 148946, - [SMALL_STATE(2226)] = 148991, - [SMALL_STATE(2227)] = 149038, - [SMALL_STATE(2228)] = 149085, - [SMALL_STATE(2229)] = 149112, - [SMALL_STATE(2230)] = 149157, - [SMALL_STATE(2231)] = 149204, - [SMALL_STATE(2232)] = 149241, - [SMALL_STATE(2233)] = 149288, - [SMALL_STATE(2234)] = 149332, - [SMALL_STATE(2235)] = 149376, - [SMALL_STATE(2236)] = 149422, - [SMALL_STATE(2237)] = 149460, - [SMALL_STATE(2238)] = 149506, - [SMALL_STATE(2239)] = 149552, - [SMALL_STATE(2240)] = 149598, - [SMALL_STATE(2241)] = 149644, - [SMALL_STATE(2242)] = 149690, - [SMALL_STATE(2243)] = 149736, - [SMALL_STATE(2244)] = 149774, - [SMALL_STATE(2245)] = 149820, - [SMALL_STATE(2246)] = 149866, - [SMALL_STATE(2247)] = 149910, - [SMALL_STATE(2248)] = 149954, - [SMALL_STATE(2249)] = 149996, - [SMALL_STATE(2250)] = 150037, - [SMALL_STATE(2251)] = 150062, - [SMALL_STATE(2252)] = 150103, - [SMALL_STATE(2253)] = 150128, - [SMALL_STATE(2254)] = 150153, - [SMALL_STATE(2255)] = 150184, - [SMALL_STATE(2256)] = 150219, - [SMALL_STATE(2257)] = 150259, - [SMALL_STATE(2258)] = 150283, - [SMALL_STATE(2259)] = 150313, - [SMALL_STATE(2260)] = 150353, - [SMALL_STATE(2261)] = 150389, - [SMALL_STATE(2262)] = 150429, - [SMALL_STATE(2263)] = 150469, - [SMALL_STATE(2264)] = 150505, - [SMALL_STATE(2265)] = 150541, - [SMALL_STATE(2266)] = 150567, - [SMALL_STATE(2267)] = 150603, - [SMALL_STATE(2268)] = 150639, - [SMALL_STATE(2269)] = 150663, - [SMALL_STATE(2270)] = 150703, - [SMALL_STATE(2271)] = 150739, - [SMALL_STATE(2272)] = 150775, - [SMALL_STATE(2273)] = 150815, - [SMALL_STATE(2274)] = 150855, - [SMALL_STATE(2275)] = 150889, - [SMALL_STATE(2276)] = 150929, - [SMALL_STATE(2277)] = 150961, - [SMALL_STATE(2278)] = 150997, - [SMALL_STATE(2279)] = 151037, - [SMALL_STATE(2280)] = 151069, - [SMALL_STATE(2281)] = 151105, - [SMALL_STATE(2282)] = 151129, - [SMALL_STATE(2283)] = 151166, - [SMALL_STATE(2284)] = 151197, - [SMALL_STATE(2285)] = 151230, - [SMALL_STATE(2286)] = 151267, - [SMALL_STATE(2287)] = 151290, - [SMALL_STATE(2288)] = 151327, - [SMALL_STATE(2289)] = 151364, - [SMALL_STATE(2290)] = 151401, - [SMALL_STATE(2291)] = 151436, - [SMALL_STATE(2292)] = 151471, - [SMALL_STATE(2293)] = 151502, - [SMALL_STATE(2294)] = 151533, - [SMALL_STATE(2295)] = 151568, - [SMALL_STATE(2296)] = 151601, - [SMALL_STATE(2297)] = 151630, - [SMALL_STATE(2298)] = 151653, - [SMALL_STATE(2299)] = 151684, - [SMALL_STATE(2300)] = 151721, - [SMALL_STATE(2301)] = 151752, - [SMALL_STATE(2302)] = 151789, - [SMALL_STATE(2303)] = 151822, - [SMALL_STATE(2304)] = 151845, - [SMALL_STATE(2305)] = 151868, - [SMALL_STATE(2306)] = 151891, - [SMALL_STATE(2307)] = 151926, - [SMALL_STATE(2308)] = 151955, - [SMALL_STATE(2309)] = 151978, - [SMALL_STATE(2310)] = 152015, - [SMALL_STATE(2311)] = 152048, - [SMALL_STATE(2312)] = 152073, - [SMALL_STATE(2313)] = 152108, - [SMALL_STATE(2314)] = 152143, - [SMALL_STATE(2315)] = 152176, - [SMALL_STATE(2316)] = 152201, - [SMALL_STATE(2317)] = 152238, - [SMALL_STATE(2318)] = 152269, - [SMALL_STATE(2319)] = 152302, - [SMALL_STATE(2320)] = 152335, - [SMALL_STATE(2321)] = 152366, - [SMALL_STATE(2322)] = 152399, - [SMALL_STATE(2323)] = 152430, - [SMALL_STATE(2324)] = 152461, - [SMALL_STATE(2325)] = 152492, - [SMALL_STATE(2326)] = 152523, - [SMALL_STATE(2327)] = 152556, - [SMALL_STATE(2328)] = 152587, - [SMALL_STATE(2329)] = 152618, - [SMALL_STATE(2330)] = 152649, - [SMALL_STATE(2331)] = 152680, - [SMALL_STATE(2332)] = 152711, - [SMALL_STATE(2333)] = 152742, - [SMALL_STATE(2334)] = 152767, - [SMALL_STATE(2335)] = 152804, - [SMALL_STATE(2336)] = 152835, - [SMALL_STATE(2337)] = 152866, - [SMALL_STATE(2338)] = 152900, - [SMALL_STATE(2339)] = 152932, - [SMALL_STATE(2340)] = 152960, - [SMALL_STATE(2341)] = 152994, - [SMALL_STATE(2342)] = 153026, - [SMALL_STATE(2343)] = 153058, - [SMALL_STATE(2344)] = 153086, - [SMALL_STATE(2345)] = 153120, - [SMALL_STATE(2346)] = 153150, - [SMALL_STATE(2347)] = 153182, - [SMALL_STATE(2348)] = 153216, - [SMALL_STATE(2349)] = 153248, - [SMALL_STATE(2350)] = 153282, - [SMALL_STATE(2351)] = 153314, - [SMALL_STATE(2352)] = 153348, - [SMALL_STATE(2353)] = 153376, - [SMALL_STATE(2354)] = 153404, - [SMALL_STATE(2355)] = 153432, - [SMALL_STATE(2356)] = 153460, - [SMALL_STATE(2357)] = 153494, - [SMALL_STATE(2358)] = 153528, - [SMALL_STATE(2359)] = 153556, - [SMALL_STATE(2360)] = 153584, - [SMALL_STATE(2361)] = 153612, - [SMALL_STATE(2362)] = 153646, - [SMALL_STATE(2363)] = 153680, - [SMALL_STATE(2364)] = 153712, - [SMALL_STATE(2365)] = 153740, - [SMALL_STATE(2366)] = 153762, - [SMALL_STATE(2367)] = 153784, - [SMALL_STATE(2368)] = 153812, - [SMALL_STATE(2369)] = 153840, - [SMALL_STATE(2370)] = 153868, - [SMALL_STATE(2371)] = 153900, - [SMALL_STATE(2372)] = 153928, - [SMALL_STATE(2373)] = 153956, - [SMALL_STATE(2374)] = 153978, - [SMALL_STATE(2375)] = 154012, - [SMALL_STATE(2376)] = 154046, - [SMALL_STATE(2377)] = 154074, - [SMALL_STATE(2378)] = 154102, - [SMALL_STATE(2379)] = 154136, - [SMALL_STATE(2380)] = 154170, - [SMALL_STATE(2381)] = 154204, - [SMALL_STATE(2382)] = 154232, - [SMALL_STATE(2383)] = 154266, - [SMALL_STATE(2384)] = 154300, - [SMALL_STATE(2385)] = 154334, - [SMALL_STATE(2386)] = 154362, - [SMALL_STATE(2387)] = 154390, - [SMALL_STATE(2388)] = 154424, - [SMALL_STATE(2389)] = 154456, - [SMALL_STATE(2390)] = 154486, - [SMALL_STATE(2391)] = 154520, - [SMALL_STATE(2392)] = 154554, - [SMALL_STATE(2393)] = 154585, - [SMALL_STATE(2394)] = 154616, - [SMALL_STATE(2395)] = 154647, - [SMALL_STATE(2396)] = 154678, - [SMALL_STATE(2397)] = 154709, - [SMALL_STATE(2398)] = 154734, - [SMALL_STATE(2399)] = 154765, - [SMALL_STATE(2400)] = 154796, - [SMALL_STATE(2401)] = 154821, - [SMALL_STATE(2402)] = 154846, - [SMALL_STATE(2403)] = 154877, - [SMALL_STATE(2404)] = 154908, - [SMALL_STATE(2405)] = 154933, - [SMALL_STATE(2406)] = 154964, - [SMALL_STATE(2407)] = 154995, - [SMALL_STATE(2408)] = 155020, - [SMALL_STATE(2409)] = 155051, - [SMALL_STATE(2410)] = 155082, - [SMALL_STATE(2411)] = 155113, - [SMALL_STATE(2412)] = 155138, - [SMALL_STATE(2413)] = 155163, - [SMALL_STATE(2414)] = 155188, - [SMALL_STATE(2415)] = 155213, - [SMALL_STATE(2416)] = 155244, - [SMALL_STATE(2417)] = 155275, - [SMALL_STATE(2418)] = 155306, - [SMALL_STATE(2419)] = 155337, - [SMALL_STATE(2420)] = 155368, - [SMALL_STATE(2421)] = 155399, - [SMALL_STATE(2422)] = 155430, - [SMALL_STATE(2423)] = 155461, - [SMALL_STATE(2424)] = 155492, - [SMALL_STATE(2425)] = 155523, - [SMALL_STATE(2426)] = 155554, - [SMALL_STATE(2427)] = 155585, - [SMALL_STATE(2428)] = 155616, - [SMALL_STATE(2429)] = 155647, - [SMALL_STATE(2430)] = 155672, - [SMALL_STATE(2431)] = 155703, - [SMALL_STATE(2432)] = 155728, - [SMALL_STATE(2433)] = 155759, - [SMALL_STATE(2434)] = 155790, - [SMALL_STATE(2435)] = 155821, - [SMALL_STATE(2436)] = 155852, - [SMALL_STATE(2437)] = 155883, - [SMALL_STATE(2438)] = 155914, - [SMALL_STATE(2439)] = 155945, - [SMALL_STATE(2440)] = 155976, - [SMALL_STATE(2441)] = 156007, - [SMALL_STATE(2442)] = 156038, - [SMALL_STATE(2443)] = 156069, - [SMALL_STATE(2444)] = 156100, - [SMALL_STATE(2445)] = 156131, - [SMALL_STATE(2446)] = 156156, - [SMALL_STATE(2447)] = 156187, - [SMALL_STATE(2448)] = 156218, - [SMALL_STATE(2449)] = 156243, - [SMALL_STATE(2450)] = 156274, - [SMALL_STATE(2451)] = 156305, - [SMALL_STATE(2452)] = 156336, - [SMALL_STATE(2453)] = 156361, - [SMALL_STATE(2454)] = 156392, - [SMALL_STATE(2455)] = 156417, - [SMALL_STATE(2456)] = 156448, - [SMALL_STATE(2457)] = 156479, - [SMALL_STATE(2458)] = 156510, - [SMALL_STATE(2459)] = 156541, - [SMALL_STATE(2460)] = 156572, - [SMALL_STATE(2461)] = 156603, - [SMALL_STATE(2462)] = 156634, - [SMALL_STATE(2463)] = 156659, - [SMALL_STATE(2464)] = 156690, - [SMALL_STATE(2465)] = 156721, - [SMALL_STATE(2466)] = 156752, - [SMALL_STATE(2467)] = 156783, - [SMALL_STATE(2468)] = 156808, - [SMALL_STATE(2469)] = 156839, - [SMALL_STATE(2470)] = 156870, - [SMALL_STATE(2471)] = 156895, - [SMALL_STATE(2472)] = 156926, - [SMALL_STATE(2473)] = 156951, - [SMALL_STATE(2474)] = 156982, - [SMALL_STATE(2475)] = 157013, - [SMALL_STATE(2476)] = 157044, - [SMALL_STATE(2477)] = 157075, - [SMALL_STATE(2478)] = 157106, - [SMALL_STATE(2479)] = 157137, - [SMALL_STATE(2480)] = 157168, - [SMALL_STATE(2481)] = 157199, - [SMALL_STATE(2482)] = 157230, - [SMALL_STATE(2483)] = 157261, - [SMALL_STATE(2484)] = 157292, - [SMALL_STATE(2485)] = 157323, - [SMALL_STATE(2486)] = 157354, - [SMALL_STATE(2487)] = 157385, - [SMALL_STATE(2488)] = 157416, - [SMALL_STATE(2489)] = 157447, - [SMALL_STATE(2490)] = 157472, - [SMALL_STATE(2491)] = 157503, - [SMALL_STATE(2492)] = 157534, - [SMALL_STATE(2493)] = 157565, - [SMALL_STATE(2494)] = 157596, - [SMALL_STATE(2495)] = 157627, - [SMALL_STATE(2496)] = 157658, - [SMALL_STATE(2497)] = 157683, - [SMALL_STATE(2498)] = 157714, - [SMALL_STATE(2499)] = 157745, - [SMALL_STATE(2500)] = 157776, - [SMALL_STATE(2501)] = 157807, - [SMALL_STATE(2502)] = 157832, - [SMALL_STATE(2503)] = 157863, - [SMALL_STATE(2504)] = 157894, - [SMALL_STATE(2505)] = 157925, - [SMALL_STATE(2506)] = 157956, - [SMALL_STATE(2507)] = 157984, - [SMALL_STATE(2508)] = 158004, - [SMALL_STATE(2509)] = 158032, - [SMALL_STATE(2510)] = 158060, - [SMALL_STATE(2511)] = 158088, - [SMALL_STATE(2512)] = 158116, - [SMALL_STATE(2513)] = 158144, - [SMALL_STATE(2514)] = 158172, - [SMALL_STATE(2515)] = 158200, - [SMALL_STATE(2516)] = 158220, - [SMALL_STATE(2517)] = 158248, - [SMALL_STATE(2518)] = 158268, - [SMALL_STATE(2519)] = 158296, - [SMALL_STATE(2520)] = 158324, - [SMALL_STATE(2521)] = 158352, - [SMALL_STATE(2522)] = 158372, - [SMALL_STATE(2523)] = 158392, - [SMALL_STATE(2524)] = 158412, - [SMALL_STATE(2525)] = 158440, - [SMALL_STATE(2526)] = 158468, - [SMALL_STATE(2527)] = 158496, - [SMALL_STATE(2528)] = 158524, - [SMALL_STATE(2529)] = 158544, - [SMALL_STATE(2530)] = 158564, - [SMALL_STATE(2531)] = 158592, - [SMALL_STATE(2532)] = 158620, - [SMALL_STATE(2533)] = 158640, - [SMALL_STATE(2534)] = 158666, - [SMALL_STATE(2535)] = 158686, - [SMALL_STATE(2536)] = 158714, - [SMALL_STATE(2537)] = 158740, - [SMALL_STATE(2538)] = 158760, - [SMALL_STATE(2539)] = 158788, - [SMALL_STATE(2540)] = 158808, - [SMALL_STATE(2541)] = 158836, - [SMALL_STATE(2542)] = 158864, - [SMALL_STATE(2543)] = 158884, - [SMALL_STATE(2544)] = 158912, - [SMALL_STATE(2545)] = 158935, - [SMALL_STATE(2546)] = 158958, - [SMALL_STATE(2547)] = 158981, - [SMALL_STATE(2548)] = 159004, - [SMALL_STATE(2549)] = 159025, - [SMALL_STATE(2550)] = 159048, - [SMALL_STATE(2551)] = 159071, - [SMALL_STATE(2552)] = 159094, - [SMALL_STATE(2553)] = 159117, - [SMALL_STATE(2554)] = 159140, - [SMALL_STATE(2555)] = 159163, - [SMALL_STATE(2556)] = 159186, - [SMALL_STATE(2557)] = 159209, - [SMALL_STATE(2558)] = 159232, - [SMALL_STATE(2559)] = 159255, - [SMALL_STATE(2560)] = 159278, - [SMALL_STATE(2561)] = 159299, - [SMALL_STATE(2562)] = 159322, - [SMALL_STATE(2563)] = 159345, - [SMALL_STATE(2564)] = 159368, - [SMALL_STATE(2565)] = 159391, - [SMALL_STATE(2566)] = 159405, - [SMALL_STATE(2567)] = 159423, - [SMALL_STATE(2568)] = 159443, - [SMALL_STATE(2569)] = 159463, - [SMALL_STATE(2570)] = 159481, - [SMALL_STATE(2571)] = 159507, - [SMALL_STATE(2572)] = 159525, - [SMALL_STATE(2573)] = 159548, - [SMALL_STATE(2574)] = 159567, - [SMALL_STATE(2575)] = 159590, - [SMALL_STATE(2576)] = 159605, - [SMALL_STATE(2577)] = 159628, - [SMALL_STATE(2578)] = 159645, - [SMALL_STATE(2579)] = 159662, - [SMALL_STATE(2580)] = 159679, - [SMALL_STATE(2581)] = 159698, - [SMALL_STATE(2582)] = 159713, - [SMALL_STATE(2583)] = 159736, - [SMALL_STATE(2584)] = 159755, - [SMALL_STATE(2585)] = 159778, - [SMALL_STATE(2586)] = 159795, - [SMALL_STATE(2587)] = 159810, - [SMALL_STATE(2588)] = 159825, - [SMALL_STATE(2589)] = 159844, - [SMALL_STATE(2590)] = 159859, - [SMALL_STATE(2591)] = 159874, - [SMALL_STATE(2592)] = 159893, - [SMALL_STATE(2593)] = 159916, - [SMALL_STATE(2594)] = 159933, - [SMALL_STATE(2595)] = 159950, - [SMALL_STATE(2596)] = 159965, - [SMALL_STATE(2597)] = 159982, - [SMALL_STATE(2598)] = 160001, - [SMALL_STATE(2599)] = 160020, - [SMALL_STATE(2600)] = 160039, - [SMALL_STATE(2601)] = 160058, - [SMALL_STATE(2602)] = 160077, - [SMALL_STATE(2603)] = 160094, - [SMALL_STATE(2604)] = 160113, - [SMALL_STATE(2605)] = 160132, - [SMALL_STATE(2606)] = 160151, - [SMALL_STATE(2607)] = 160170, - [SMALL_STATE(2608)] = 160189, - [SMALL_STATE(2609)] = 160204, - [SMALL_STATE(2610)] = 160227, - [SMALL_STATE(2611)] = 160250, - [SMALL_STATE(2612)] = 160267, - [SMALL_STATE(2613)] = 160286, - [SMALL_STATE(2614)] = 160305, - [SMALL_STATE(2615)] = 160328, - [SMALL_STATE(2616)] = 160345, - [SMALL_STATE(2617)] = 160362, - [SMALL_STATE(2618)] = 160381, - [SMALL_STATE(2619)] = 160400, - [SMALL_STATE(2620)] = 160417, - [SMALL_STATE(2621)] = 160436, - [SMALL_STATE(2622)] = 160453, - [SMALL_STATE(2623)] = 160468, - [SMALL_STATE(2624)] = 160487, - [SMALL_STATE(2625)] = 160507, - [SMALL_STATE(2626)] = 160527, - [SMALL_STATE(2627)] = 160541, - [SMALL_STATE(2628)] = 160561, - [SMALL_STATE(2629)] = 160581, - [SMALL_STATE(2630)] = 160601, - [SMALL_STATE(2631)] = 160621, - [SMALL_STATE(2632)] = 160635, - [SMALL_STATE(2633)] = 160649, - [SMALL_STATE(2634)] = 160669, - [SMALL_STATE(2635)] = 160685, - [SMALL_STATE(2636)] = 160705, - [SMALL_STATE(2637)] = 160721, - [SMALL_STATE(2638)] = 160741, - [SMALL_STATE(2639)] = 160761, - [SMALL_STATE(2640)] = 160781, - [SMALL_STATE(2641)] = 160801, - [SMALL_STATE(2642)] = 160821, - [SMALL_STATE(2643)] = 160841, - [SMALL_STATE(2644)] = 160855, - [SMALL_STATE(2645)] = 160869, - [SMALL_STATE(2646)] = 160885, - [SMALL_STATE(2647)] = 160901, - [SMALL_STATE(2648)] = 160917, - [SMALL_STATE(2649)] = 160933, - [SMALL_STATE(2650)] = 160953, - [SMALL_STATE(2651)] = 160969, - [SMALL_STATE(2652)] = 160983, - [SMALL_STATE(2653)] = 160997, - [SMALL_STATE(2654)] = 161013, - [SMALL_STATE(2655)] = 161027, - [SMALL_STATE(2656)] = 161040, - [SMALL_STATE(2657)] = 161053, - [SMALL_STATE(2658)] = 161068, - [SMALL_STATE(2659)] = 161081, - [SMALL_STATE(2660)] = 161098, - [SMALL_STATE(2661)] = 161115, - [SMALL_STATE(2662)] = 161132, - [SMALL_STATE(2663)] = 161149, - [SMALL_STATE(2664)] = 161160, - [SMALL_STATE(2665)] = 161177, - [SMALL_STATE(2666)] = 161192, - [SMALL_STATE(2667)] = 161203, - [SMALL_STATE(2668)] = 161218, - [SMALL_STATE(2669)] = 161233, - [SMALL_STATE(2670)] = 161246, - [SMALL_STATE(2671)] = 161259, - [SMALL_STATE(2672)] = 161272, - [SMALL_STATE(2673)] = 161285, - [SMALL_STATE(2674)] = 161298, - [SMALL_STATE(2675)] = 161311, - [SMALL_STATE(2676)] = 161328, - [SMALL_STATE(2677)] = 161343, - [SMALL_STATE(2678)] = 161356, - [SMALL_STATE(2679)] = 161373, - [SMALL_STATE(2680)] = 161386, - [SMALL_STATE(2681)] = 161399, - [SMALL_STATE(2682)] = 161416, - [SMALL_STATE(2683)] = 161431, - [SMALL_STATE(2684)] = 161448, - [SMALL_STATE(2685)] = 161465, - [SMALL_STATE(2686)] = 161482, - [SMALL_STATE(2687)] = 161499, - [SMALL_STATE(2688)] = 161512, - [SMALL_STATE(2689)] = 161529, - [SMALL_STATE(2690)] = 161542, - [SMALL_STATE(2691)] = 161559, - [SMALL_STATE(2692)] = 161574, - [SMALL_STATE(2693)] = 161587, - [SMALL_STATE(2694)] = 161604, - [SMALL_STATE(2695)] = 161617, - [SMALL_STATE(2696)] = 161634, - [SMALL_STATE(2697)] = 161651, - [SMALL_STATE(2698)] = 161668, - [SMALL_STATE(2699)] = 161685, - [SMALL_STATE(2700)] = 161702, - [SMALL_STATE(2701)] = 161719, - [SMALL_STATE(2702)] = 161736, - [SMALL_STATE(2703)] = 161750, - [SMALL_STATE(2704)] = 161764, - [SMALL_STATE(2705)] = 161778, - [SMALL_STATE(2706)] = 161792, - [SMALL_STATE(2707)] = 161806, - [SMALL_STATE(2708)] = 161820, - [SMALL_STATE(2709)] = 161834, - [SMALL_STATE(2710)] = 161848, - [SMALL_STATE(2711)] = 161862, - [SMALL_STATE(2712)] = 161876, - [SMALL_STATE(2713)] = 161890, - [SMALL_STATE(2714)] = 161904, - [SMALL_STATE(2715)] = 161918, - [SMALL_STATE(2716)] = 161932, - [SMALL_STATE(2717)] = 161946, - [SMALL_STATE(2718)] = 161960, - [SMALL_STATE(2719)] = 161974, - [SMALL_STATE(2720)] = 161988, - [SMALL_STATE(2721)] = 162002, - [SMALL_STATE(2722)] = 162016, - [SMALL_STATE(2723)] = 162030, - [SMALL_STATE(2724)] = 162044, - [SMALL_STATE(2725)] = 162058, - [SMALL_STATE(2726)] = 162072, - [SMALL_STATE(2727)] = 162086, - [SMALL_STATE(2728)] = 162100, - [SMALL_STATE(2729)] = 162114, - [SMALL_STATE(2730)] = 162128, - [SMALL_STATE(2731)] = 162142, - [SMALL_STATE(2732)] = 162156, - [SMALL_STATE(2733)] = 162170, - [SMALL_STATE(2734)] = 162184, - [SMALL_STATE(2735)] = 162198, - [SMALL_STATE(2736)] = 162212, - [SMALL_STATE(2737)] = 162226, - [SMALL_STATE(2738)] = 162240, - [SMALL_STATE(2739)] = 162254, - [SMALL_STATE(2740)] = 162268, - [SMALL_STATE(2741)] = 162282, - [SMALL_STATE(2742)] = 162296, - [SMALL_STATE(2743)] = 162310, - [SMALL_STATE(2744)] = 162324, - [SMALL_STATE(2745)] = 162338, - [SMALL_STATE(2746)] = 162352, - [SMALL_STATE(2747)] = 162366, - [SMALL_STATE(2748)] = 162380, - [SMALL_STATE(2749)] = 162394, - [SMALL_STATE(2750)] = 162408, - [SMALL_STATE(2751)] = 162422, - [SMALL_STATE(2752)] = 162436, - [SMALL_STATE(2753)] = 162450, - [SMALL_STATE(2754)] = 162464, - [SMALL_STATE(2755)] = 162478, - [SMALL_STATE(2756)] = 162492, - [SMALL_STATE(2757)] = 162506, - [SMALL_STATE(2758)] = 162520, - [SMALL_STATE(2759)] = 162534, - [SMALL_STATE(2760)] = 162548, - [SMALL_STATE(2761)] = 162562, - [SMALL_STATE(2762)] = 162576, - [SMALL_STATE(2763)] = 162590, - [SMALL_STATE(2764)] = 162604, - [SMALL_STATE(2765)] = 162618, - [SMALL_STATE(2766)] = 162632, - [SMALL_STATE(2767)] = 162646, - [SMALL_STATE(2768)] = 162660, - [SMALL_STATE(2769)] = 162674, - [SMALL_STATE(2770)] = 162688, - [SMALL_STATE(2771)] = 162702, - [SMALL_STATE(2772)] = 162716, - [SMALL_STATE(2773)] = 162726, - [SMALL_STATE(2774)] = 162740, - [SMALL_STATE(2775)] = 162754, - [SMALL_STATE(2776)] = 162768, - [SMALL_STATE(2777)] = 162782, - [SMALL_STATE(2778)] = 162796, - [SMALL_STATE(2779)] = 162810, - [SMALL_STATE(2780)] = 162824, - [SMALL_STATE(2781)] = 162838, - [SMALL_STATE(2782)] = 162850, - [SMALL_STATE(2783)] = 162860, - [SMALL_STATE(2784)] = 162874, - [SMALL_STATE(2785)] = 162888, - [SMALL_STATE(2786)] = 162902, - [SMALL_STATE(2787)] = 162916, - [SMALL_STATE(2788)] = 162930, - [SMALL_STATE(2789)] = 162944, - [SMALL_STATE(2790)] = 162958, - [SMALL_STATE(2791)] = 162972, - [SMALL_STATE(2792)] = 162986, - [SMALL_STATE(2793)] = 163000, - [SMALL_STATE(2794)] = 163014, - [SMALL_STATE(2795)] = 163028, - [SMALL_STATE(2796)] = 163042, - [SMALL_STATE(2797)] = 163054, - [SMALL_STATE(2798)] = 163066, - [SMALL_STATE(2799)] = 163080, - [SMALL_STATE(2800)] = 163094, - [SMALL_STATE(2801)] = 163108, - [SMALL_STATE(2802)] = 163122, - [SMALL_STATE(2803)] = 163136, - [SMALL_STATE(2804)] = 163148, - [SMALL_STATE(2805)] = 163162, - [SMALL_STATE(2806)] = 163174, - [SMALL_STATE(2807)] = 163188, - [SMALL_STATE(2808)] = 163202, - [SMALL_STATE(2809)] = 163216, - [SMALL_STATE(2810)] = 163230, - [SMALL_STATE(2811)] = 163244, - [SMALL_STATE(2812)] = 163258, - [SMALL_STATE(2813)] = 163272, - [SMALL_STATE(2814)] = 163286, - [SMALL_STATE(2815)] = 163298, - [SMALL_STATE(2816)] = 163310, - [SMALL_STATE(2817)] = 163322, - [SMALL_STATE(2818)] = 163334, - [SMALL_STATE(2819)] = 163348, - [SMALL_STATE(2820)] = 163362, - [SMALL_STATE(2821)] = 163376, - [SMALL_STATE(2822)] = 163390, - [SMALL_STATE(2823)] = 163402, - [SMALL_STATE(2824)] = 163416, - [SMALL_STATE(2825)] = 163430, - [SMALL_STATE(2826)] = 163444, - [SMALL_STATE(2827)] = 163454, - [SMALL_STATE(2828)] = 163468, - [SMALL_STATE(2829)] = 163482, - [SMALL_STATE(2830)] = 163496, - [SMALL_STATE(2831)] = 163510, - [SMALL_STATE(2832)] = 163524, - [SMALL_STATE(2833)] = 163538, - [SMALL_STATE(2834)] = 163552, - [SMALL_STATE(2835)] = 163566, - [SMALL_STATE(2836)] = 163580, - [SMALL_STATE(2837)] = 163594, - [SMALL_STATE(2838)] = 163606, - [SMALL_STATE(2839)] = 163618, - [SMALL_STATE(2840)] = 163632, - [SMALL_STATE(2841)] = 163646, - [SMALL_STATE(2842)] = 163660, - [SMALL_STATE(2843)] = 163674, - [SMALL_STATE(2844)] = 163688, - [SMALL_STATE(2845)] = 163702, - [SMALL_STATE(2846)] = 163716, - [SMALL_STATE(2847)] = 163730, - [SMALL_STATE(2848)] = 163744, - [SMALL_STATE(2849)] = 163758, - [SMALL_STATE(2850)] = 163772, - [SMALL_STATE(2851)] = 163784, - [SMALL_STATE(2852)] = 163798, - [SMALL_STATE(2853)] = 163810, - [SMALL_STATE(2854)] = 163824, - [SMALL_STATE(2855)] = 163836, - [SMALL_STATE(2856)] = 163848, - [SMALL_STATE(2857)] = 163860, - [SMALL_STATE(2858)] = 163874, - [SMALL_STATE(2859)] = 163888, - [SMALL_STATE(2860)] = 163900, - [SMALL_STATE(2861)] = 163912, - [SMALL_STATE(2862)] = 163924, - [SMALL_STATE(2863)] = 163938, - [SMALL_STATE(2864)] = 163950, - [SMALL_STATE(2865)] = 163964, - [SMALL_STATE(2866)] = 163978, - [SMALL_STATE(2867)] = 163988, - [SMALL_STATE(2868)] = 164002, - [SMALL_STATE(2869)] = 164012, - [SMALL_STATE(2870)] = 164026, - [SMALL_STATE(2871)] = 164037, - [SMALL_STATE(2872)] = 164048, - [SMALL_STATE(2873)] = 164057, - [SMALL_STATE(2874)] = 164068, - [SMALL_STATE(2875)] = 164079, - [SMALL_STATE(2876)] = 164090, - [SMALL_STATE(2877)] = 164101, - [SMALL_STATE(2878)] = 164112, - [SMALL_STATE(2879)] = 164123, - [SMALL_STATE(2880)] = 164134, - [SMALL_STATE(2881)] = 164145, - [SMALL_STATE(2882)] = 164154, - [SMALL_STATE(2883)] = 164165, - [SMALL_STATE(2884)] = 164176, - [SMALL_STATE(2885)] = 164185, - [SMALL_STATE(2886)] = 164196, - [SMALL_STATE(2887)] = 164207, - [SMALL_STATE(2888)] = 164218, - [SMALL_STATE(2889)] = 164229, - [SMALL_STATE(2890)] = 164240, - [SMALL_STATE(2891)] = 164251, - [SMALL_STATE(2892)] = 164262, - [SMALL_STATE(2893)] = 164273, - [SMALL_STATE(2894)] = 164284, - [SMALL_STATE(2895)] = 164295, - [SMALL_STATE(2896)] = 164306, - [SMALL_STATE(2897)] = 164315, - [SMALL_STATE(2898)] = 164326, - [SMALL_STATE(2899)] = 164337, - [SMALL_STATE(2900)] = 164348, - [SMALL_STATE(2901)] = 164357, - [SMALL_STATE(2902)] = 164368, - [SMALL_STATE(2903)] = 164379, - [SMALL_STATE(2904)] = 164390, - [SMALL_STATE(2905)] = 164401, - [SMALL_STATE(2906)] = 164412, - [SMALL_STATE(2907)] = 164423, - [SMALL_STATE(2908)] = 164434, - [SMALL_STATE(2909)] = 164445, - [SMALL_STATE(2910)] = 164456, - [SMALL_STATE(2911)] = 164467, - [SMALL_STATE(2912)] = 164478, - [SMALL_STATE(2913)] = 164489, - [SMALL_STATE(2914)] = 164500, - [SMALL_STATE(2915)] = 164511, - [SMALL_STATE(2916)] = 164522, - [SMALL_STATE(2917)] = 164533, - [SMALL_STATE(2918)] = 164544, - [SMALL_STATE(2919)] = 164555, - [SMALL_STATE(2920)] = 164566, - [SMALL_STATE(2921)] = 164577, - [SMALL_STATE(2922)] = 164588, - [SMALL_STATE(2923)] = 164599, - [SMALL_STATE(2924)] = 164610, - [SMALL_STATE(2925)] = 164621, - [SMALL_STATE(2926)] = 164632, - [SMALL_STATE(2927)] = 164643, - [SMALL_STATE(2928)] = 164654, - [SMALL_STATE(2929)] = 164665, - [SMALL_STATE(2930)] = 164676, - [SMALL_STATE(2931)] = 164687, - [SMALL_STATE(2932)] = 164698, - [SMALL_STATE(2933)] = 164709, - [SMALL_STATE(2934)] = 164720, - [SMALL_STATE(2935)] = 164731, - [SMALL_STATE(2936)] = 164742, - [SMALL_STATE(2937)] = 164750, - [SMALL_STATE(2938)] = 164758, - [SMALL_STATE(2939)] = 164766, - [SMALL_STATE(2940)] = 164774, - [SMALL_STATE(2941)] = 164782, - [SMALL_STATE(2942)] = 164790, - [SMALL_STATE(2943)] = 164798, - [SMALL_STATE(2944)] = 164806, - [SMALL_STATE(2945)] = 164814, - [SMALL_STATE(2946)] = 164822, - [SMALL_STATE(2947)] = 164830, - [SMALL_STATE(2948)] = 164838, - [SMALL_STATE(2949)] = 164846, - [SMALL_STATE(2950)] = 164854, - [SMALL_STATE(2951)] = 164862, - [SMALL_STATE(2952)] = 164870, - [SMALL_STATE(2953)] = 164878, - [SMALL_STATE(2954)] = 164886, - [SMALL_STATE(2955)] = 164894, - [SMALL_STATE(2956)] = 164902, - [SMALL_STATE(2957)] = 164910, - [SMALL_STATE(2958)] = 164918, - [SMALL_STATE(2959)] = 164926, - [SMALL_STATE(2960)] = 164934, - [SMALL_STATE(2961)] = 164942, - [SMALL_STATE(2962)] = 164950, - [SMALL_STATE(2963)] = 164958, - [SMALL_STATE(2964)] = 164966, - [SMALL_STATE(2965)] = 164974, - [SMALL_STATE(2966)] = 164982, - [SMALL_STATE(2967)] = 164990, - [SMALL_STATE(2968)] = 164998, - [SMALL_STATE(2969)] = 165006, - [SMALL_STATE(2970)] = 165014, - [SMALL_STATE(2971)] = 165022, - [SMALL_STATE(2972)] = 165030, - [SMALL_STATE(2973)] = 165038, - [SMALL_STATE(2974)] = 165046, - [SMALL_STATE(2975)] = 165054, - [SMALL_STATE(2976)] = 165062, - [SMALL_STATE(2977)] = 165070, - [SMALL_STATE(2978)] = 165078, - [SMALL_STATE(2979)] = 165086, - [SMALL_STATE(2980)] = 165094, - [SMALL_STATE(2981)] = 165102, - [SMALL_STATE(2982)] = 165110, - [SMALL_STATE(2983)] = 165118, - [SMALL_STATE(2984)] = 165126, - [SMALL_STATE(2985)] = 165134, - [SMALL_STATE(2986)] = 165142, - [SMALL_STATE(2987)] = 165150, - [SMALL_STATE(2988)] = 165158, - [SMALL_STATE(2989)] = 165166, - [SMALL_STATE(2990)] = 165174, - [SMALL_STATE(2991)] = 165182, - [SMALL_STATE(2992)] = 165190, - [SMALL_STATE(2993)] = 165198, - [SMALL_STATE(2994)] = 165206, - [SMALL_STATE(2995)] = 165214, - [SMALL_STATE(2996)] = 165222, - [SMALL_STATE(2997)] = 165230, - [SMALL_STATE(2998)] = 165238, - [SMALL_STATE(2999)] = 165246, - [SMALL_STATE(3000)] = 165254, - [SMALL_STATE(3001)] = 165262, - [SMALL_STATE(3002)] = 165270, - [SMALL_STATE(3003)] = 165278, - [SMALL_STATE(3004)] = 165286, - [SMALL_STATE(3005)] = 165294, - [SMALL_STATE(3006)] = 165302, - [SMALL_STATE(3007)] = 165310, - [SMALL_STATE(3008)] = 165318, - [SMALL_STATE(3009)] = 165326, - [SMALL_STATE(3010)] = 165334, - [SMALL_STATE(3011)] = 165342, - [SMALL_STATE(3012)] = 165350, - [SMALL_STATE(3013)] = 165358, - [SMALL_STATE(3014)] = 165366, - [SMALL_STATE(3015)] = 165374, - [SMALL_STATE(3016)] = 165382, - [SMALL_STATE(3017)] = 165390, - [SMALL_STATE(3018)] = 165398, - [SMALL_STATE(3019)] = 165406, - [SMALL_STATE(3020)] = 165414, - [SMALL_STATE(3021)] = 165422, - [SMALL_STATE(3022)] = 165430, - [SMALL_STATE(3023)] = 165438, - [SMALL_STATE(3024)] = 165446, - [SMALL_STATE(3025)] = 165454, - [SMALL_STATE(3026)] = 165462, - [SMALL_STATE(3027)] = 165470, - [SMALL_STATE(3028)] = 165478, - [SMALL_STATE(3029)] = 165486, - [SMALL_STATE(3030)] = 165494, - [SMALL_STATE(3031)] = 165502, - [SMALL_STATE(3032)] = 165510, - [SMALL_STATE(3033)] = 165518, - [SMALL_STATE(3034)] = 165526, - [SMALL_STATE(3035)] = 165534, - [SMALL_STATE(3036)] = 165542, - [SMALL_STATE(3037)] = 165550, - [SMALL_STATE(3038)] = 165558, - [SMALL_STATE(3039)] = 165566, - [SMALL_STATE(3040)] = 165574, - [SMALL_STATE(3041)] = 165582, - [SMALL_STATE(3042)] = 165590, - [SMALL_STATE(3043)] = 165598, - [SMALL_STATE(3044)] = 165606, - [SMALL_STATE(3045)] = 165614, - [SMALL_STATE(3046)] = 165622, - [SMALL_STATE(3047)] = 165630, - [SMALL_STATE(3048)] = 165638, - [SMALL_STATE(3049)] = 165646, - [SMALL_STATE(3050)] = 165654, - [SMALL_STATE(3051)] = 165662, - [SMALL_STATE(3052)] = 165670, - [SMALL_STATE(3053)] = 165678, - [SMALL_STATE(3054)] = 165686, - [SMALL_STATE(3055)] = 165694, - [SMALL_STATE(3056)] = 165702, - [SMALL_STATE(3057)] = 165710, - [SMALL_STATE(3058)] = 165718, - [SMALL_STATE(3059)] = 165726, - [SMALL_STATE(3060)] = 165734, - [SMALL_STATE(3061)] = 165742, - [SMALL_STATE(3062)] = 165750, - [SMALL_STATE(3063)] = 165758, - [SMALL_STATE(3064)] = 165766, - [SMALL_STATE(3065)] = 165774, - [SMALL_STATE(3066)] = 165782, - [SMALL_STATE(3067)] = 165790, - [SMALL_STATE(3068)] = 165798, - [SMALL_STATE(3069)] = 165806, - [SMALL_STATE(3070)] = 165814, - [SMALL_STATE(3071)] = 165822, - [SMALL_STATE(3072)] = 165830, - [SMALL_STATE(3073)] = 165838, - [SMALL_STATE(3074)] = 165846, - [SMALL_STATE(3075)] = 165854, - [SMALL_STATE(3076)] = 165862, - [SMALL_STATE(3077)] = 165870, - [SMALL_STATE(3078)] = 165878, - [SMALL_STATE(3079)] = 165886, - [SMALL_STATE(3080)] = 165894, - [SMALL_STATE(3081)] = 165902, - [SMALL_STATE(3082)] = 165910, - [SMALL_STATE(3083)] = 165918, - [SMALL_STATE(3084)] = 165926, - [SMALL_STATE(3085)] = 165934, - [SMALL_STATE(3086)] = 165942, - [SMALL_STATE(3087)] = 165950, - [SMALL_STATE(3088)] = 165958, - [SMALL_STATE(3089)] = 165966, - [SMALL_STATE(3090)] = 165974, - [SMALL_STATE(3091)] = 165982, - [SMALL_STATE(3092)] = 165990, - [SMALL_STATE(3093)] = 165998, - [SMALL_STATE(3094)] = 166006, - [SMALL_STATE(3095)] = 166014, - [SMALL_STATE(3096)] = 166022, - [SMALL_STATE(3097)] = 166030, - [SMALL_STATE(3098)] = 166038, - [SMALL_STATE(3099)] = 166046, - [SMALL_STATE(3100)] = 166054, - [SMALL_STATE(3101)] = 166062, - [SMALL_STATE(3102)] = 166070, - [SMALL_STATE(3103)] = 166078, - [SMALL_STATE(3104)] = 166086, - [SMALL_STATE(3105)] = 166094, - [SMALL_STATE(3106)] = 166102, - [SMALL_STATE(3107)] = 166110, - [SMALL_STATE(3108)] = 166118, - [SMALL_STATE(3109)] = 166126, - [SMALL_STATE(3110)] = 166134, - [SMALL_STATE(3111)] = 166142, - [SMALL_STATE(3112)] = 166150, - [SMALL_STATE(3113)] = 166158, - [SMALL_STATE(3114)] = 166166, - [SMALL_STATE(3115)] = 166174, - [SMALL_STATE(3116)] = 166182, - [SMALL_STATE(3117)] = 166190, - [SMALL_STATE(3118)] = 166198, - [SMALL_STATE(3119)] = 166206, - [SMALL_STATE(3120)] = 166214, - [SMALL_STATE(3121)] = 166222, - [SMALL_STATE(3122)] = 166230, - [SMALL_STATE(3123)] = 166238, - [SMALL_STATE(3124)] = 166246, - [SMALL_STATE(3125)] = 166254, - [SMALL_STATE(3126)] = 166262, - [SMALL_STATE(3127)] = 166270, - [SMALL_STATE(3128)] = 166278, - [SMALL_STATE(3129)] = 166286, - [SMALL_STATE(3130)] = 166294, - [SMALL_STATE(3131)] = 166302, - [SMALL_STATE(3132)] = 166310, - [SMALL_STATE(3133)] = 166318, - [SMALL_STATE(3134)] = 166326, - [SMALL_STATE(3135)] = 166334, - [SMALL_STATE(3136)] = 166342, - [SMALL_STATE(3137)] = 166350, - [SMALL_STATE(3138)] = 166358, - [SMALL_STATE(3139)] = 166366, - [SMALL_STATE(3140)] = 166374, - [SMALL_STATE(3141)] = 166382, - [SMALL_STATE(3142)] = 166390, - [SMALL_STATE(3143)] = 166398, - [SMALL_STATE(3144)] = 166406, - [SMALL_STATE(3145)] = 166414, - [SMALL_STATE(3146)] = 166422, - [SMALL_STATE(3147)] = 166430, - [SMALL_STATE(3148)] = 166438, - [SMALL_STATE(3149)] = 166446, - [SMALL_STATE(3150)] = 166454, - [SMALL_STATE(3151)] = 166462, - [SMALL_STATE(3152)] = 166470, - [SMALL_STATE(3153)] = 166478, - [SMALL_STATE(3154)] = 166486, - [SMALL_STATE(3155)] = 166494, - [SMALL_STATE(3156)] = 166502, - [SMALL_STATE(3157)] = 166510, - [SMALL_STATE(3158)] = 166518, - [SMALL_STATE(3159)] = 166526, - [SMALL_STATE(3160)] = 166534, - [SMALL_STATE(3161)] = 166542, - [SMALL_STATE(3162)] = 166550, - [SMALL_STATE(3163)] = 166558, - [SMALL_STATE(3164)] = 166566, - [SMALL_STATE(3165)] = 166574, - [SMALL_STATE(3166)] = 166582, - [SMALL_STATE(3167)] = 166590, - [SMALL_STATE(3168)] = 166598, - [SMALL_STATE(3169)] = 166606, - [SMALL_STATE(3170)] = 166614, - [SMALL_STATE(3171)] = 166622, - [SMALL_STATE(3172)] = 166630, - [SMALL_STATE(3173)] = 166638, - [SMALL_STATE(3174)] = 166646, - [SMALL_STATE(3175)] = 166654, - [SMALL_STATE(3176)] = 166662, - [SMALL_STATE(3177)] = 166670, - [SMALL_STATE(3178)] = 166678, - [SMALL_STATE(3179)] = 166686, - [SMALL_STATE(3180)] = 166694, - [SMALL_STATE(3181)] = 166702, - [SMALL_STATE(3182)] = 166710, - [SMALL_STATE(3183)] = 166718, - [SMALL_STATE(3184)] = 166726, - [SMALL_STATE(3185)] = 166734, - [SMALL_STATE(3186)] = 166742, - [SMALL_STATE(3187)] = 166750, - [SMALL_STATE(3188)] = 166758, - [SMALL_STATE(3189)] = 166766, - [SMALL_STATE(3190)] = 166774, - [SMALL_STATE(3191)] = 166782, - [SMALL_STATE(3192)] = 166790, - [SMALL_STATE(3193)] = 166798, - [SMALL_STATE(3194)] = 166806, - [SMALL_STATE(3195)] = 166814, - [SMALL_STATE(3196)] = 166822, - [SMALL_STATE(3197)] = 166830, - [SMALL_STATE(3198)] = 166838, - [SMALL_STATE(3199)] = 166846, - [SMALL_STATE(3200)] = 166854, - [SMALL_STATE(3201)] = 166862, - [SMALL_STATE(3202)] = 166870, - [SMALL_STATE(3203)] = 166878, - [SMALL_STATE(3204)] = 166886, - [SMALL_STATE(3205)] = 166894, - [SMALL_STATE(3206)] = 166902, - [SMALL_STATE(3207)] = 166910, - [SMALL_STATE(3208)] = 166918, - [SMALL_STATE(3209)] = 166926, - [SMALL_STATE(3210)] = 166934, - [SMALL_STATE(3211)] = 166942, - [SMALL_STATE(3212)] = 166950, - [SMALL_STATE(3213)] = 166958, - [SMALL_STATE(3214)] = 166966, - [SMALL_STATE(3215)] = 166974, - [SMALL_STATE(3216)] = 166982, - [SMALL_STATE(3217)] = 166990, - [SMALL_STATE(3218)] = 166998, - [SMALL_STATE(3219)] = 167006, - [SMALL_STATE(3220)] = 167014, - [SMALL_STATE(3221)] = 167022, - [SMALL_STATE(3222)] = 167030, - [SMALL_STATE(3223)] = 167038, - [SMALL_STATE(3224)] = 167046, - [SMALL_STATE(3225)] = 167054, - [SMALL_STATE(3226)] = 167062, - [SMALL_STATE(3227)] = 167070, - [SMALL_STATE(3228)] = 167078, - [SMALL_STATE(3229)] = 167086, - [SMALL_STATE(3230)] = 167094, - [SMALL_STATE(3231)] = 167102, - [SMALL_STATE(3232)] = 167110, - [SMALL_STATE(3233)] = 167118, - [SMALL_STATE(3234)] = 167126, - [SMALL_STATE(3235)] = 167134, - [SMALL_STATE(3236)] = 167142, - [SMALL_STATE(3237)] = 167150, - [SMALL_STATE(3238)] = 167158, - [SMALL_STATE(3239)] = 167166, - [SMALL_STATE(3240)] = 167174, - [SMALL_STATE(3241)] = 167181, - [SMALL_STATE(3242)] = 167188, - [SMALL_STATE(3243)] = 167195, - [SMALL_STATE(3244)] = 167202, - [SMALL_STATE(3245)] = 167209, - [SMALL_STATE(3246)] = 167216, - [SMALL_STATE(3247)] = 167223, - [SMALL_STATE(3248)] = 167230, - [SMALL_STATE(3249)] = 167237, - [SMALL_STATE(3250)] = 167244, - [SMALL_STATE(3251)] = 167251, - [SMALL_STATE(3252)] = 167258, - [SMALL_STATE(3253)] = 167265, - [SMALL_STATE(3254)] = 167272, - [SMALL_STATE(3255)] = 167279, - [SMALL_STATE(3256)] = 167286, - [SMALL_STATE(3257)] = 167293, - [SMALL_STATE(3258)] = 167300, - [SMALL_STATE(3259)] = 167307, - [SMALL_STATE(3260)] = 167314, - [SMALL_STATE(3261)] = 167321, - [SMALL_STATE(3262)] = 167328, - [SMALL_STATE(3263)] = 167335, + [SMALL_STATE(195)] = 0, + [SMALL_STATE(196)] = 121, + [SMALL_STATE(197)] = 238, + [SMALL_STATE(198)] = 359, + [SMALL_STATE(199)] = 476, + [SMALL_STATE(200)] = 597, + [SMALL_STATE(201)] = 718, + [SMALL_STATE(202)] = 835, + [SMALL_STATE(203)] = 956, + [SMALL_STATE(204)] = 1073, + [SMALL_STATE(205)] = 1190, + [SMALL_STATE(206)] = 1307, + [SMALL_STATE(207)] = 1424, + [SMALL_STATE(208)] = 1541, + [SMALL_STATE(209)] = 1658, + [SMALL_STATE(210)] = 1775, + [SMALL_STATE(211)] = 1892, + [SMALL_STATE(212)] = 2013, + [SMALL_STATE(213)] = 2130, + [SMALL_STATE(214)] = 2251, + [SMALL_STATE(215)] = 2368, + [SMALL_STATE(216)] = 2485, + [SMALL_STATE(217)] = 2602, + [SMALL_STATE(218)] = 2719, + [SMALL_STATE(219)] = 2840, + [SMALL_STATE(220)] = 2957, + [SMALL_STATE(221)] = 3074, + [SMALL_STATE(222)] = 3191, + [SMALL_STATE(223)] = 3308, + [SMALL_STATE(224)] = 3429, + [SMALL_STATE(225)] = 3550, + [SMALL_STATE(226)] = 3669, + [SMALL_STATE(227)] = 3786, + [SMALL_STATE(228)] = 3903, + [SMALL_STATE(229)] = 4024, + [SMALL_STATE(230)] = 4141, + [SMALL_STATE(231)] = 4258, + [SMALL_STATE(232)] = 4375, + [SMALL_STATE(233)] = 4492, + [SMALL_STATE(234)] = 4613, + [SMALL_STATE(235)] = 4730, + [SMALL_STATE(236)] = 4847, + [SMALL_STATE(237)] = 4968, + [SMALL_STATE(238)] = 5085, + [SMALL_STATE(239)] = 5202, + [SMALL_STATE(240)] = 5319, + [SMALL_STATE(241)] = 5440, + [SMALL_STATE(242)] = 5557, + [SMALL_STATE(243)] = 5674, + [SMALL_STATE(244)] = 5791, + [SMALL_STATE(245)] = 5908, + [SMALL_STATE(246)] = 6025, + [SMALL_STATE(247)] = 6142, + [SMALL_STATE(248)] = 6259, + [SMALL_STATE(249)] = 6376, + [SMALL_STATE(250)] = 6493, + [SMALL_STATE(251)] = 6610, + [SMALL_STATE(252)] = 6727, + [SMALL_STATE(253)] = 6848, + [SMALL_STATE(254)] = 6969, + [SMALL_STATE(255)] = 7090, + [SMALL_STATE(256)] = 7207, + [SMALL_STATE(257)] = 7324, + [SMALL_STATE(258)] = 7443, + [SMALL_STATE(259)] = 7560, + [SMALL_STATE(260)] = 7681, + [SMALL_STATE(261)] = 7802, + [SMALL_STATE(262)] = 7919, + [SMALL_STATE(263)] = 8036, + [SMALL_STATE(264)] = 8157, + [SMALL_STATE(265)] = 8274, + [SMALL_STATE(266)] = 8395, + [SMALL_STATE(267)] = 8512, + [SMALL_STATE(268)] = 8629, + [SMALL_STATE(269)] = 8750, + [SMALL_STATE(270)] = 8867, + [SMALL_STATE(271)] = 8984, + [SMALL_STATE(272)] = 9101, + [SMALL_STATE(273)] = 9218, + [SMALL_STATE(274)] = 9339, + [SMALL_STATE(275)] = 9456, + [SMALL_STATE(276)] = 9573, + [SMALL_STATE(277)] = 9690, + [SMALL_STATE(278)] = 9807, + [SMALL_STATE(279)] = 9924, + [SMALL_STATE(280)] = 10041, + [SMALL_STATE(281)] = 10158, + [SMALL_STATE(282)] = 10275, + [SMALL_STATE(283)] = 10396, + [SMALL_STATE(284)] = 10513, + [SMALL_STATE(285)] = 10630, + [SMALL_STATE(286)] = 10751, + [SMALL_STATE(287)] = 10868, + [SMALL_STATE(288)] = 10985, + [SMALL_STATE(289)] = 11102, + [SMALL_STATE(290)] = 11223, + [SMALL_STATE(291)] = 11340, + [SMALL_STATE(292)] = 11457, + [SMALL_STATE(293)] = 11574, + [SMALL_STATE(294)] = 11691, + [SMALL_STATE(295)] = 11812, + [SMALL_STATE(296)] = 11929, + [SMALL_STATE(297)] = 12050, + [SMALL_STATE(298)] = 12167, + [SMALL_STATE(299)] = 12284, + [SMALL_STATE(300)] = 12401, + [SMALL_STATE(301)] = 12520, + [SMALL_STATE(302)] = 12637, + [SMALL_STATE(303)] = 12754, + [SMALL_STATE(304)] = 12875, + [SMALL_STATE(305)] = 12992, + [SMALL_STATE(306)] = 13109, + [SMALL_STATE(307)] = 13226, + [SMALL_STATE(308)] = 13343, + [SMALL_STATE(309)] = 13460, + [SMALL_STATE(310)] = 13577, + [SMALL_STATE(311)] = 13694, + [SMALL_STATE(312)] = 13811, + [SMALL_STATE(313)] = 13928, + [SMALL_STATE(314)] = 14045, + [SMALL_STATE(315)] = 14162, + [SMALL_STATE(316)] = 14279, + [SMALL_STATE(317)] = 14397, + [SMALL_STATE(318)] = 14515, + [SMALL_STATE(319)] = 14633, + [SMALL_STATE(320)] = 14748, + [SMALL_STATE(321)] = 14863, + [SMALL_STATE(322)] = 14978, + [SMALL_STATE(323)] = 15093, + [SMALL_STATE(324)] = 15208, + [SMALL_STATE(325)] = 15323, + [SMALL_STATE(326)] = 15438, + [SMALL_STATE(327)] = 15553, + [SMALL_STATE(328)] = 15668, + [SMALL_STATE(329)] = 15783, + [SMALL_STATE(330)] = 15898, + [SMALL_STATE(331)] = 16013, + [SMALL_STATE(332)] = 16128, + [SMALL_STATE(333)] = 16243, + [SMALL_STATE(334)] = 16358, + [SMALL_STATE(335)] = 16443, + [SMALL_STATE(336)] = 16558, + [SMALL_STATE(337)] = 16673, + [SMALL_STATE(338)] = 16788, + [SMALL_STATE(339)] = 16903, + [SMALL_STATE(340)] = 17018, + [SMALL_STATE(341)] = 17099, + [SMALL_STATE(342)] = 17214, + [SMALL_STATE(343)] = 17329, + [SMALL_STATE(344)] = 17444, + [SMALL_STATE(345)] = 17559, + [SMALL_STATE(346)] = 17674, + [SMALL_STATE(347)] = 17789, + [SMALL_STATE(348)] = 17904, + [SMALL_STATE(349)] = 18019, + [SMALL_STATE(350)] = 18134, + [SMALL_STATE(351)] = 18249, + [SMALL_STATE(352)] = 18364, + [SMALL_STATE(353)] = 18479, + [SMALL_STATE(354)] = 18594, + [SMALL_STATE(355)] = 18709, + [SMALL_STATE(356)] = 18824, + [SMALL_STATE(357)] = 18939, + [SMALL_STATE(358)] = 19054, + [SMALL_STATE(359)] = 19169, + [SMALL_STATE(360)] = 19284, + [SMALL_STATE(361)] = 19399, + [SMALL_STATE(362)] = 19514, + [SMALL_STATE(363)] = 19629, + [SMALL_STATE(364)] = 19744, + [SMALL_STATE(365)] = 19859, + [SMALL_STATE(366)] = 19974, + [SMALL_STATE(367)] = 20089, + [SMALL_STATE(368)] = 20204, + [SMALL_STATE(369)] = 20319, + [SMALL_STATE(370)] = 20434, + [SMALL_STATE(371)] = 20539, + [SMALL_STATE(372)] = 20654, + [SMALL_STATE(373)] = 20769, + [SMALL_STATE(374)] = 20884, + [SMALL_STATE(375)] = 20999, + [SMALL_STATE(376)] = 21114, + [SMALL_STATE(377)] = 21229, + [SMALL_STATE(378)] = 21344, + [SMALL_STATE(379)] = 21459, + [SMALL_STATE(380)] = 21574, + [SMALL_STATE(381)] = 21689, + [SMALL_STATE(382)] = 21804, + [SMALL_STATE(383)] = 21919, + [SMALL_STATE(384)] = 22034, + [SMALL_STATE(385)] = 22149, + [SMALL_STATE(386)] = 22264, + [SMALL_STATE(387)] = 22379, + [SMALL_STATE(388)] = 22494, + [SMALL_STATE(389)] = 22609, + [SMALL_STATE(390)] = 22724, + [SMALL_STATE(391)] = 22839, + [SMALL_STATE(392)] = 22924, + [SMALL_STATE(393)] = 23039, + [SMALL_STATE(394)] = 23154, + [SMALL_STATE(395)] = 23269, + [SMALL_STATE(396)] = 23384, + [SMALL_STATE(397)] = 23499, + [SMALL_STATE(398)] = 23614, + [SMALL_STATE(399)] = 23695, + [SMALL_STATE(400)] = 23810, + [SMALL_STATE(401)] = 23925, + [SMALL_STATE(402)] = 24040, + [SMALL_STATE(403)] = 24155, + [SMALL_STATE(404)] = 24260, + [SMALL_STATE(405)] = 24375, + [SMALL_STATE(406)] = 24490, + [SMALL_STATE(407)] = 24605, + [SMALL_STATE(408)] = 24720, + [SMALL_STATE(409)] = 24835, + [SMALL_STATE(410)] = 24950, + [SMALL_STATE(411)] = 25065, + [SMALL_STATE(412)] = 25180, + [SMALL_STATE(413)] = 25295, + [SMALL_STATE(414)] = 25410, + [SMALL_STATE(415)] = 25525, + [SMALL_STATE(416)] = 25640, + [SMALL_STATE(417)] = 25755, + [SMALL_STATE(418)] = 25870, + [SMALL_STATE(419)] = 25985, + [SMALL_STATE(420)] = 26100, + [SMALL_STATE(421)] = 26215, + [SMALL_STATE(422)] = 26330, + [SMALL_STATE(423)] = 26445, + [SMALL_STATE(424)] = 26560, + [SMALL_STATE(425)] = 26675, + [SMALL_STATE(426)] = 26790, + [SMALL_STATE(427)] = 26905, + [SMALL_STATE(428)] = 27020, + [SMALL_STATE(429)] = 27135, + [SMALL_STATE(430)] = 27250, + [SMALL_STATE(431)] = 27365, + [SMALL_STATE(432)] = 27480, + [SMALL_STATE(433)] = 27595, + [SMALL_STATE(434)] = 27710, + [SMALL_STATE(435)] = 27825, + [SMALL_STATE(436)] = 27940, + [SMALL_STATE(437)] = 28055, + [SMALL_STATE(438)] = 28170, + [SMALL_STATE(439)] = 28285, + [SMALL_STATE(440)] = 28400, + [SMALL_STATE(441)] = 28515, + [SMALL_STATE(442)] = 28630, + [SMALL_STATE(443)] = 28745, + [SMALL_STATE(444)] = 28860, + [SMALL_STATE(445)] = 28975, + [SMALL_STATE(446)] = 29090, + [SMALL_STATE(447)] = 29205, + [SMALL_STATE(448)] = 29320, + [SMALL_STATE(449)] = 29435, + [SMALL_STATE(450)] = 29550, + [SMALL_STATE(451)] = 29665, + [SMALL_STATE(452)] = 29780, + [SMALL_STATE(453)] = 29895, + [SMALL_STATE(454)] = 30010, + [SMALL_STATE(455)] = 30125, + [SMALL_STATE(456)] = 30240, + [SMALL_STATE(457)] = 30355, + [SMALL_STATE(458)] = 30470, + [SMALL_STATE(459)] = 30585, + [SMALL_STATE(460)] = 30700, + [SMALL_STATE(461)] = 30815, + [SMALL_STATE(462)] = 30930, + [SMALL_STATE(463)] = 31045, + [SMALL_STATE(464)] = 31160, + [SMALL_STATE(465)] = 31275, + [SMALL_STATE(466)] = 31390, + [SMALL_STATE(467)] = 31505, + [SMALL_STATE(468)] = 31620, + [SMALL_STATE(469)] = 31735, + [SMALL_STATE(470)] = 31850, + [SMALL_STATE(471)] = 31965, + [SMALL_STATE(472)] = 32080, + [SMALL_STATE(473)] = 32195, + [SMALL_STATE(474)] = 32310, + [SMALL_STATE(475)] = 32425, + [SMALL_STATE(476)] = 32540, + [SMALL_STATE(477)] = 32655, + [SMALL_STATE(478)] = 32770, + [SMALL_STATE(479)] = 32885, + [SMALL_STATE(480)] = 33000, + [SMALL_STATE(481)] = 33115, + [SMALL_STATE(482)] = 33230, + [SMALL_STATE(483)] = 33345, + [SMALL_STATE(484)] = 33460, + [SMALL_STATE(485)] = 33575, + [SMALL_STATE(486)] = 33690, + [SMALL_STATE(487)] = 33805, + [SMALL_STATE(488)] = 33920, + [SMALL_STATE(489)] = 34035, + [SMALL_STATE(490)] = 34150, + [SMALL_STATE(491)] = 34265, + [SMALL_STATE(492)] = 34380, + [SMALL_STATE(493)] = 34495, + [SMALL_STATE(494)] = 34610, + [SMALL_STATE(495)] = 34725, + [SMALL_STATE(496)] = 34840, + [SMALL_STATE(497)] = 34955, + [SMALL_STATE(498)] = 35070, + [SMALL_STATE(499)] = 35185, + [SMALL_STATE(500)] = 35300, + [SMALL_STATE(501)] = 35415, + [SMALL_STATE(502)] = 35530, + [SMALL_STATE(503)] = 35645, + [SMALL_STATE(504)] = 35760, + [SMALL_STATE(505)] = 35875, + [SMALL_STATE(506)] = 35990, + [SMALL_STATE(507)] = 36105, + [SMALL_STATE(508)] = 36220, + [SMALL_STATE(509)] = 36335, + [SMALL_STATE(510)] = 36450, + [SMALL_STATE(511)] = 36565, + [SMALL_STATE(512)] = 36680, + [SMALL_STATE(513)] = 36795, + [SMALL_STATE(514)] = 36910, + [SMALL_STATE(515)] = 37025, + [SMALL_STATE(516)] = 37140, + [SMALL_STATE(517)] = 37255, + [SMALL_STATE(518)] = 37370, + [SMALL_STATE(519)] = 37485, + [SMALL_STATE(520)] = 37600, + [SMALL_STATE(521)] = 37715, + [SMALL_STATE(522)] = 37830, + [SMALL_STATE(523)] = 37945, + [SMALL_STATE(524)] = 38060, + [SMALL_STATE(525)] = 38175, + [SMALL_STATE(526)] = 38290, + [SMALL_STATE(527)] = 38405, + [SMALL_STATE(528)] = 38520, + [SMALL_STATE(529)] = 38635, + [SMALL_STATE(530)] = 38750, + [SMALL_STATE(531)] = 38865, + [SMALL_STATE(532)] = 38980, + [SMALL_STATE(533)] = 39095, + [SMALL_STATE(534)] = 39210, + [SMALL_STATE(535)] = 39325, + [SMALL_STATE(536)] = 39440, + [SMALL_STATE(537)] = 39555, + [SMALL_STATE(538)] = 39670, + [SMALL_STATE(539)] = 39785, + [SMALL_STATE(540)] = 39858, + [SMALL_STATE(541)] = 39973, + [SMALL_STATE(542)] = 40046, + [SMALL_STATE(543)] = 40161, + [SMALL_STATE(544)] = 40276, + [SMALL_STATE(545)] = 40349, + [SMALL_STATE(546)] = 40464, + [SMALL_STATE(547)] = 40579, + [SMALL_STATE(548)] = 40694, + [SMALL_STATE(549)] = 40809, + [SMALL_STATE(550)] = 40914, + [SMALL_STATE(551)] = 41029, + [SMALL_STATE(552)] = 41144, + [SMALL_STATE(553)] = 41259, + [SMALL_STATE(554)] = 41374, + [SMALL_STATE(555)] = 41457, + [SMALL_STATE(556)] = 41572, + [SMALL_STATE(557)] = 41687, + [SMALL_STATE(558)] = 41802, + [SMALL_STATE(559)] = 41917, + [SMALL_STATE(560)] = 42032, + [SMALL_STATE(561)] = 42147, + [SMALL_STATE(562)] = 42262, + [SMALL_STATE(563)] = 42377, + [SMALL_STATE(564)] = 42492, + [SMALL_STATE(565)] = 42607, + [SMALL_STATE(566)] = 42722, + [SMALL_STATE(567)] = 42837, + [SMALL_STATE(568)] = 42952, + [SMALL_STATE(569)] = 43067, + [SMALL_STATE(570)] = 43182, + [SMALL_STATE(571)] = 43297, + [SMALL_STATE(572)] = 43412, + [SMALL_STATE(573)] = 43527, + [SMALL_STATE(574)] = 43642, + [SMALL_STATE(575)] = 43757, + [SMALL_STATE(576)] = 43872, + [SMALL_STATE(577)] = 43987, + [SMALL_STATE(578)] = 44102, + [SMALL_STATE(579)] = 44217, + [SMALL_STATE(580)] = 44332, + [SMALL_STATE(581)] = 44447, + [SMALL_STATE(582)] = 44562, + [SMALL_STATE(583)] = 44677, + [SMALL_STATE(584)] = 44792, + [SMALL_STATE(585)] = 44907, + [SMALL_STATE(586)] = 44980, + [SMALL_STATE(587)] = 45095, + [SMALL_STATE(588)] = 45210, + [SMALL_STATE(589)] = 45283, + [SMALL_STATE(590)] = 45398, + [SMALL_STATE(591)] = 45513, + [SMALL_STATE(592)] = 45628, + [SMALL_STATE(593)] = 45743, + [SMALL_STATE(594)] = 45858, + [SMALL_STATE(595)] = 45973, + [SMALL_STATE(596)] = 46088, + [SMALL_STATE(597)] = 46203, + [SMALL_STATE(598)] = 46318, + [SMALL_STATE(599)] = 46433, + [SMALL_STATE(600)] = 46548, + [SMALL_STATE(601)] = 46623, + [SMALL_STATE(602)] = 46738, + [SMALL_STATE(603)] = 46817, + [SMALL_STATE(604)] = 46896, + [SMALL_STATE(605)] = 47011, + [SMALL_STATE(606)] = 47126, + [SMALL_STATE(607)] = 47197, + [SMALL_STATE(608)] = 47312, + [SMALL_STATE(609)] = 47387, + [SMALL_STATE(610)] = 47502, + [SMALL_STATE(611)] = 47581, + [SMALL_STATE(612)] = 47696, + [SMALL_STATE(613)] = 47811, + [SMALL_STATE(614)] = 47926, + [SMALL_STATE(615)] = 48041, + [SMALL_STATE(616)] = 48156, + [SMALL_STATE(617)] = 48271, + [SMALL_STATE(618)] = 48386, + [SMALL_STATE(619)] = 48459, + [SMALL_STATE(620)] = 48574, + [SMALL_STATE(621)] = 48689, + [SMALL_STATE(622)] = 48804, + [SMALL_STATE(623)] = 48919, + [SMALL_STATE(624)] = 49034, + [SMALL_STATE(625)] = 49149, + [SMALL_STATE(626)] = 49264, + [SMALL_STATE(627)] = 49335, + [SMALL_STATE(628)] = 49442, + [SMALL_STATE(629)] = 49557, + [SMALL_STATE(630)] = 49672, + [SMALL_STATE(631)] = 49743, + [SMALL_STATE(632)] = 49816, + [SMALL_STATE(633)] = 49887, + [SMALL_STATE(634)] = 49958, + [SMALL_STATE(635)] = 50033, + [SMALL_STATE(636)] = 50112, + [SMALL_STATE(637)] = 50183, + [SMALL_STATE(638)] = 50298, + [SMALL_STATE(639)] = 50415, + [SMALL_STATE(640)] = 50530, + [SMALL_STATE(641)] = 50645, + [SMALL_STATE(642)] = 50760, + [SMALL_STATE(643)] = 50875, + [SMALL_STATE(644)] = 50990, + [SMALL_STATE(645)] = 51105, + [SMALL_STATE(646)] = 51220, + [SMALL_STATE(647)] = 51295, + [SMALL_STATE(648)] = 51410, + [SMALL_STATE(649)] = 51485, + [SMALL_STATE(650)] = 51556, + [SMALL_STATE(651)] = 51671, + [SMALL_STATE(652)] = 51786, + [SMALL_STATE(653)] = 51901, + [SMALL_STATE(654)] = 52016, + [SMALL_STATE(655)] = 52123, + [SMALL_STATE(656)] = 52238, + [SMALL_STATE(657)] = 52345, + [SMALL_STATE(658)] = 52418, + [SMALL_STATE(659)] = 52489, + [SMALL_STATE(660)] = 52604, + [SMALL_STATE(661)] = 52693, + [SMALL_STATE(662)] = 52784, + [SMALL_STATE(663)] = 52877, + [SMALL_STATE(664)] = 52972, + [SMALL_STATE(665)] = 53059, + [SMALL_STATE(666)] = 53142, + [SMALL_STATE(667)] = 53225, + [SMALL_STATE(668)] = 53340, + [SMALL_STATE(669)] = 53423, + [SMALL_STATE(670)] = 53506, + [SMALL_STATE(671)] = 53621, + [SMALL_STATE(672)] = 53736, + [SMALL_STATE(673)] = 53851, + [SMALL_STATE(674)] = 53966, + [SMALL_STATE(675)] = 54081, + [SMALL_STATE(676)] = 54188, + [SMALL_STATE(677)] = 54259, + [SMALL_STATE(678)] = 54374, + [SMALL_STATE(679)] = 54489, + [SMALL_STATE(680)] = 54604, + [SMALL_STATE(681)] = 54719, + [SMALL_STATE(682)] = 54834, + [SMALL_STATE(683)] = 54949, + [SMALL_STATE(684)] = 55064, + [SMALL_STATE(685)] = 55179, + [SMALL_STATE(686)] = 55294, + [SMALL_STATE(687)] = 55409, + [SMALL_STATE(688)] = 55524, + [SMALL_STATE(689)] = 55639, + [SMALL_STATE(690)] = 55726, + [SMALL_STATE(691)] = 55821, + [SMALL_STATE(692)] = 55936, + [SMALL_STATE(693)] = 56051, + [SMALL_STATE(694)] = 56144, + [SMALL_STATE(695)] = 56235, + [SMALL_STATE(696)] = 56324, + [SMALL_STATE(697)] = 56439, + [SMALL_STATE(698)] = 56554, + [SMALL_STATE(699)] = 56669, + [SMALL_STATE(700)] = 56784, + [SMALL_STATE(701)] = 56899, + [SMALL_STATE(702)] = 57014, + [SMALL_STATE(703)] = 57129, + [SMALL_STATE(704)] = 57244, + [SMALL_STATE(705)] = 57315, + [SMALL_STATE(706)] = 57430, + [SMALL_STATE(707)] = 57545, + [SMALL_STATE(708)] = 57660, + [SMALL_STATE(709)] = 57775, + [SMALL_STATE(710)] = 57890, + [SMALL_STATE(711)] = 58005, + [SMALL_STATE(712)] = 58076, + [SMALL_STATE(713)] = 58191, + [SMALL_STATE(714)] = 58262, + [SMALL_STATE(715)] = 58333, + [SMALL_STATE(716)] = 58448, + [SMALL_STATE(717)] = 58563, + [SMALL_STATE(718)] = 58678, + [SMALL_STATE(719)] = 58785, + [SMALL_STATE(720)] = 58892, + [SMALL_STATE(721)] = 58963, + [SMALL_STATE(722)] = 59078, + [SMALL_STATE(723)] = 59149, + [SMALL_STATE(724)] = 59264, + [SMALL_STATE(725)] = 59379, + [SMALL_STATE(726)] = 59494, + [SMALL_STATE(727)] = 59609, + [SMALL_STATE(728)] = 59680, + [SMALL_STATE(729)] = 59795, + [SMALL_STATE(730)] = 59866, + [SMALL_STATE(731)] = 59937, + [SMALL_STATE(732)] = 60012, + [SMALL_STATE(733)] = 60083, + [SMALL_STATE(734)] = 60198, + [SMALL_STATE(735)] = 60313, + [SMALL_STATE(736)] = 60384, + [SMALL_STATE(737)] = 60499, + [SMALL_STATE(738)] = 60614, + [SMALL_STATE(739)] = 60729, + [SMALL_STATE(740)] = 60800, + [SMALL_STATE(741)] = 60871, + [SMALL_STATE(742)] = 60986, + [SMALL_STATE(743)] = 61057, + [SMALL_STATE(744)] = 61172, + [SMALL_STATE(745)] = 61243, + [SMALL_STATE(746)] = 61358, + [SMALL_STATE(747)] = 61473, + [SMALL_STATE(748)] = 61544, + [SMALL_STATE(749)] = 61659, + [SMALL_STATE(750)] = 61774, + [SMALL_STATE(751)] = 61889, + [SMALL_STATE(752)] = 62004, + [SMALL_STATE(753)] = 62119, + [SMALL_STATE(754)] = 62234, + [SMALL_STATE(755)] = 62349, + [SMALL_STATE(756)] = 62464, + [SMALL_STATE(757)] = 62579, + [SMALL_STATE(758)] = 62694, + [SMALL_STATE(759)] = 62809, + [SMALL_STATE(760)] = 62924, + [SMALL_STATE(761)] = 63039, + [SMALL_STATE(762)] = 63154, + [SMALL_STATE(763)] = 63269, + [SMALL_STATE(764)] = 63384, + [SMALL_STATE(765)] = 63499, + [SMALL_STATE(766)] = 63614, + [SMALL_STATE(767)] = 63729, + [SMALL_STATE(768)] = 63844, + [SMALL_STATE(769)] = 63959, + [SMALL_STATE(770)] = 64074, + [SMALL_STATE(771)] = 64189, + [SMALL_STATE(772)] = 64304, + [SMALL_STATE(773)] = 64419, + [SMALL_STATE(774)] = 64534, + [SMALL_STATE(775)] = 64649, + [SMALL_STATE(776)] = 64764, + [SMALL_STATE(777)] = 64879, + [SMALL_STATE(778)] = 64994, + [SMALL_STATE(779)] = 65109, + [SMALL_STATE(780)] = 65224, + [SMALL_STATE(781)] = 65299, + [SMALL_STATE(782)] = 65414, + [SMALL_STATE(783)] = 65529, + [SMALL_STATE(784)] = 65644, + [SMALL_STATE(785)] = 65759, + [SMALL_STATE(786)] = 65834, + [SMALL_STATE(787)] = 65949, + [SMALL_STATE(788)] = 66064, + [SMALL_STATE(789)] = 66179, + [SMALL_STATE(790)] = 66294, + [SMALL_STATE(791)] = 66367, + [SMALL_STATE(792)] = 66482, + [SMALL_STATE(793)] = 66597, + [SMALL_STATE(794)] = 66668, + [SMALL_STATE(795)] = 66783, + [SMALL_STATE(796)] = 66898, + [SMALL_STATE(797)] = 67013, + [SMALL_STATE(798)] = 67128, + [SMALL_STATE(799)] = 67199, + [SMALL_STATE(800)] = 67314, + [SMALL_STATE(801)] = 67429, + [SMALL_STATE(802)] = 67544, + [SMALL_STATE(803)] = 67659, + [SMALL_STATE(804)] = 67774, + [SMALL_STATE(805)] = 67889, + [SMALL_STATE(806)] = 67960, + [SMALL_STATE(807)] = 68033, + [SMALL_STATE(808)] = 68148, + [SMALL_STATE(809)] = 68263, + [SMALL_STATE(810)] = 68378, + [SMALL_STATE(811)] = 68493, + [SMALL_STATE(812)] = 68608, + [SMALL_STATE(813)] = 68723, + [SMALL_STATE(814)] = 68838, + [SMALL_STATE(815)] = 68953, + [SMALL_STATE(816)] = 69068, + [SMALL_STATE(817)] = 69183, + [SMALL_STATE(818)] = 69298, + [SMALL_STATE(819)] = 69413, + [SMALL_STATE(820)] = 69484, + [SMALL_STATE(821)] = 69599, + [SMALL_STATE(822)] = 69714, + [SMALL_STATE(823)] = 69829, + [SMALL_STATE(824)] = 69944, + [SMALL_STATE(825)] = 70059, + [SMALL_STATE(826)] = 70174, + [SMALL_STATE(827)] = 70289, + [SMALL_STATE(828)] = 70404, + [SMALL_STATE(829)] = 70519, + [SMALL_STATE(830)] = 70634, + [SMALL_STATE(831)] = 70749, + [SMALL_STATE(832)] = 70864, + [SMALL_STATE(833)] = 70947, + [SMALL_STATE(834)] = 71062, + [SMALL_STATE(835)] = 71177, + [SMALL_STATE(836)] = 71292, + [SMALL_STATE(837)] = 71407, + [SMALL_STATE(838)] = 71522, + [SMALL_STATE(839)] = 71637, + [SMALL_STATE(840)] = 71752, + [SMALL_STATE(841)] = 71867, + [SMALL_STATE(842)] = 71982, + [SMALL_STATE(843)] = 72097, + [SMALL_STATE(844)] = 72212, + [SMALL_STATE(845)] = 72327, + [SMALL_STATE(846)] = 72442, + [SMALL_STATE(847)] = 72557, + [SMALL_STATE(848)] = 72672, + [SMALL_STATE(849)] = 72777, + [SMALL_STATE(850)] = 72848, + [SMALL_STATE(851)] = 72963, + [SMALL_STATE(852)] = 73078, + [SMALL_STATE(853)] = 73193, + [SMALL_STATE(854)] = 73308, + [SMALL_STATE(855)] = 73423, + [SMALL_STATE(856)] = 73538, + [SMALL_STATE(857)] = 73608, + [SMALL_STATE(858)] = 73676, + [SMALL_STATE(859)] = 73744, + [SMALL_STATE(860)] = 73814, + [SMALL_STATE(861)] = 73882, + [SMALL_STATE(862)] = 73950, + [SMALL_STATE(863)] = 74020, + [SMALL_STATE(864)] = 74090, + [SMALL_STATE(865)] = 74158, + [SMALL_STATE(866)] = 74226, + [SMALL_STATE(867)] = 74294, + [SMALL_STATE(868)] = 74362, + [SMALL_STATE(869)] = 74432, + [SMALL_STATE(870)] = 74500, + [SMALL_STATE(871)] = 74570, + [SMALL_STATE(872)] = 74640, + [SMALL_STATE(873)] = 74718, + [SMALL_STATE(874)] = 74796, + [SMALL_STATE(875)] = 74866, + [SMALL_STATE(876)] = 74934, + [SMALL_STATE(877)] = 75004, + [SMALL_STATE(878)] = 75074, + [SMALL_STATE(879)] = 75142, + [SMALL_STATE(880)] = 75210, + [SMALL_STATE(881)] = 75278, + [SMALL_STATE(882)] = 75348, + [SMALL_STATE(883)] = 75416, + [SMALL_STATE(884)] = 75484, + [SMALL_STATE(885)] = 75554, + [SMALL_STATE(886)] = 75624, + [SMALL_STATE(887)] = 75692, + [SMALL_STATE(888)] = 75762, + [SMALL_STATE(889)] = 75832, + [SMALL_STATE(890)] = 75900, + [SMALL_STATE(891)] = 75968, + [SMALL_STATE(892)] = 76036, + [SMALL_STATE(893)] = 76104, + [SMALL_STATE(894)] = 76174, + [SMALL_STATE(895)] = 76244, + [SMALL_STATE(896)] = 76314, + [SMALL_STATE(897)] = 76382, + [SMALL_STATE(898)] = 76450, + [SMALL_STATE(899)] = 76518, + [SMALL_STATE(900)] = 76586, + [SMALL_STATE(901)] = 76656, + [SMALL_STATE(902)] = 76726, + [SMALL_STATE(903)] = 76797, + [SMALL_STATE(904)] = 76864, + [SMALL_STATE(905)] = 76935, + [SMALL_STATE(906)] = 77002, + [SMALL_STATE(907)] = 77069, + [SMALL_STATE(908)] = 77136, + [SMALL_STATE(909)] = 77203, + [SMALL_STATE(910)] = 77270, + [SMALL_STATE(911)] = 77337, + [SMALL_STATE(912)] = 77408, + [SMALL_STATE(913)] = 77475, + [SMALL_STATE(914)] = 77542, + [SMALL_STATE(915)] = 77609, + [SMALL_STATE(916)] = 77676, + [SMALL_STATE(917)] = 77743, + [SMALL_STATE(918)] = 77810, + [SMALL_STATE(919)] = 77877, + [SMALL_STATE(920)] = 77948, + [SMALL_STATE(921)] = 78015, + [SMALL_STATE(922)] = 78082, + [SMALL_STATE(923)] = 78149, + [SMALL_STATE(924)] = 78216, + [SMALL_STATE(925)] = 78283, + [SMALL_STATE(926)] = 78350, + [SMALL_STATE(927)] = 78417, + [SMALL_STATE(928)] = 78484, + [SMALL_STATE(929)] = 78551, + [SMALL_STATE(930)] = 78618, + [SMALL_STATE(931)] = 78685, + [SMALL_STATE(932)] = 78752, + [SMALL_STATE(933)] = 78819, + [SMALL_STATE(934)] = 78886, + [SMALL_STATE(935)] = 78953, + [SMALL_STATE(936)] = 79020, + [SMALL_STATE(937)] = 79087, + [SMALL_STATE(938)] = 79154, + [SMALL_STATE(939)] = 79221, + [SMALL_STATE(940)] = 79288, + [SMALL_STATE(941)] = 79355, + [SMALL_STATE(942)] = 79422, + [SMALL_STATE(943)] = 79489, + [SMALL_STATE(944)] = 79556, + [SMALL_STATE(945)] = 79623, + [SMALL_STATE(946)] = 79690, + [SMALL_STATE(947)] = 79757, + [SMALL_STATE(948)] = 79824, + [SMALL_STATE(949)] = 79891, + [SMALL_STATE(950)] = 79958, + [SMALL_STATE(951)] = 80025, + [SMALL_STATE(952)] = 80092, + [SMALL_STATE(953)] = 80163, + [SMALL_STATE(954)] = 80230, + [SMALL_STATE(955)] = 80297, + [SMALL_STATE(956)] = 80364, + [SMALL_STATE(957)] = 80431, + [SMALL_STATE(958)] = 80498, + [SMALL_STATE(959)] = 80565, + [SMALL_STATE(960)] = 80632, + [SMALL_STATE(961)] = 80699, + [SMALL_STATE(962)] = 80766, + [SMALL_STATE(963)] = 80833, + [SMALL_STATE(964)] = 80900, + [SMALL_STATE(965)] = 80967, + [SMALL_STATE(966)] = 81034, + [SMALL_STATE(967)] = 81101, + [SMALL_STATE(968)] = 81168, + [SMALL_STATE(969)] = 81235, + [SMALL_STATE(970)] = 81302, + [SMALL_STATE(971)] = 81369, + [SMALL_STATE(972)] = 81436, + [SMALL_STATE(973)] = 81503, + [SMALL_STATE(974)] = 81570, + [SMALL_STATE(975)] = 81637, + [SMALL_STATE(976)] = 81704, + [SMALL_STATE(977)] = 81775, + [SMALL_STATE(978)] = 81842, + [SMALL_STATE(979)] = 81909, + [SMALL_STATE(980)] = 81976, + [SMALL_STATE(981)] = 82043, + [SMALL_STATE(982)] = 82110, + [SMALL_STATE(983)] = 82177, + [SMALL_STATE(984)] = 82244, + [SMALL_STATE(985)] = 82311, + [SMALL_STATE(986)] = 82378, + [SMALL_STATE(987)] = 82445, + [SMALL_STATE(988)] = 82512, + [SMALL_STATE(989)] = 82579, + [SMALL_STATE(990)] = 82646, + [SMALL_STATE(991)] = 82713, + [SMALL_STATE(992)] = 82780, + [SMALL_STATE(993)] = 82847, + [SMALL_STATE(994)] = 82914, + [SMALL_STATE(995)] = 82981, + [SMALL_STATE(996)] = 83048, + [SMALL_STATE(997)] = 83115, + [SMALL_STATE(998)] = 83182, + [SMALL_STATE(999)] = 83249, + [SMALL_STATE(1000)] = 83316, + [SMALL_STATE(1001)] = 83383, + [SMALL_STATE(1002)] = 83450, + [SMALL_STATE(1003)] = 83517, + [SMALL_STATE(1004)] = 83584, + [SMALL_STATE(1005)] = 83651, + [SMALL_STATE(1006)] = 83718, + [SMALL_STATE(1007)] = 83785, + [SMALL_STATE(1008)] = 83852, + [SMALL_STATE(1009)] = 83919, + [SMALL_STATE(1010)] = 83986, + [SMALL_STATE(1011)] = 84058, + [SMALL_STATE(1012)] = 84130, + [SMALL_STATE(1013)] = 84208, + [SMALL_STATE(1014)] = 84280, + [SMALL_STATE(1015)] = 84341, + [SMALL_STATE(1016)] = 84402, + [SMALL_STATE(1017)] = 84499, + [SMALL_STATE(1018)] = 84560, + [SMALL_STATE(1019)] = 84655, + [SMALL_STATE(1020)] = 84716, + [SMALL_STATE(1021)] = 84813, + [SMALL_STATE(1022)] = 84874, + [SMALL_STATE(1023)] = 84947, + [SMALL_STATE(1024)] = 85010, + [SMALL_STATE(1025)] = 85081, + [SMALL_STATE(1026)] = 85160, + [SMALL_STATE(1027)] = 85241, + [SMALL_STATE(1028)] = 85324, + [SMALL_STATE(1029)] = 85385, + [SMALL_STATE(1030)] = 85470, + [SMALL_STATE(1031)] = 85547, + [SMALL_STATE(1032)] = 85620, + [SMALL_STATE(1033)] = 85693, + [SMALL_STATE(1034)] = 85754, + [SMALL_STATE(1035)] = 85851, + [SMALL_STATE(1036)] = 85926, + [SMALL_STATE(1037)] = 85989, + [SMALL_STATE(1038)] = 86050, + [SMALL_STATE(1039)] = 86115, + [SMALL_STATE(1040)] = 86178, + [SMALL_STATE(1041)] = 86243, + [SMALL_STATE(1042)] = 86304, + [SMALL_STATE(1043)] = 86369, + [SMALL_STATE(1044)] = 86438, + [SMALL_STATE(1045)] = 86507, + [SMALL_STATE(1046)] = 86572, + [SMALL_STATE(1047)] = 86633, + [SMALL_STATE(1048)] = 86696, + [SMALL_STATE(1049)] = 86759, + [SMALL_STATE(1050)] = 86820, + [SMALL_STATE(1051)] = 86881, + [SMALL_STATE(1052)] = 86942, + [SMALL_STATE(1053)] = 87003, + [SMALL_STATE(1054)] = 87066, + [SMALL_STATE(1055)] = 87161, + [SMALL_STATE(1056)] = 87222, + [SMALL_STATE(1057)] = 87282, + [SMALL_STATE(1058)] = 87340, + [SMALL_STATE(1059)] = 87400, + [SMALL_STATE(1060)] = 87460, + [SMALL_STATE(1061)] = 87518, + [SMALL_STATE(1062)] = 87576, + [SMALL_STATE(1063)] = 87634, + [SMALL_STATE(1064)] = 87694, + [SMALL_STATE(1065)] = 87754, + [SMALL_STATE(1066)] = 87812, + [SMALL_STATE(1067)] = 87870, + [SMALL_STATE(1068)] = 87928, + [SMALL_STATE(1069)] = 87986, + [SMALL_STATE(1070)] = 88044, + [SMALL_STATE(1071)] = 88104, + [SMALL_STATE(1072)] = 88164, + [SMALL_STATE(1073)] = 88224, + [SMALL_STATE(1074)] = 88282, + [SMALL_STATE(1075)] = 88340, + [SMALL_STATE(1076)] = 88408, + [SMALL_STATE(1077)] = 88468, + [SMALL_STATE(1078)] = 88526, + [SMALL_STATE(1079)] = 88586, + [SMALL_STATE(1080)] = 88644, + [SMALL_STATE(1081)] = 88701, + [SMALL_STATE(1082)] = 88758, + [SMALL_STATE(1083)] = 88815, + [SMALL_STATE(1084)] = 88872, + [SMALL_STATE(1085)] = 88929, + [SMALL_STATE(1086)] = 88986, + [SMALL_STATE(1087)] = 89043, + [SMALL_STATE(1088)] = 89100, + [SMALL_STATE(1089)] = 89157, + [SMALL_STATE(1090)] = 89214, + [SMALL_STATE(1091)] = 89271, + [SMALL_STATE(1092)] = 89328, + [SMALL_STATE(1093)] = 89389, + [SMALL_STATE(1094)] = 89446, + [SMALL_STATE(1095)] = 89503, + [SMALL_STATE(1096)] = 89560, + [SMALL_STATE(1097)] = 89617, + [SMALL_STATE(1098)] = 89674, + [SMALL_STATE(1099)] = 89731, + [SMALL_STATE(1100)] = 89788, + [SMALL_STATE(1101)] = 89845, + [SMALL_STATE(1102)] = 89902, + [SMALL_STATE(1103)] = 89959, + [SMALL_STATE(1104)] = 90016, + [SMALL_STATE(1105)] = 90073, + [SMALL_STATE(1106)] = 90138, + [SMALL_STATE(1107)] = 90195, + [SMALL_STATE(1108)] = 90260, + [SMALL_STATE(1109)] = 90325, + [SMALL_STATE(1110)] = 90390, + [SMALL_STATE(1111)] = 90455, + [SMALL_STATE(1112)] = 90512, + [SMALL_STATE(1113)] = 90569, + [SMALL_STATE(1114)] = 90626, + [SMALL_STATE(1115)] = 90683, + [SMALL_STATE(1116)] = 90740, + [SMALL_STATE(1117)] = 90797, + [SMALL_STATE(1118)] = 90862, + [SMALL_STATE(1119)] = 90919, + [SMALL_STATE(1120)] = 90976, + [SMALL_STATE(1121)] = 91033, + [SMALL_STATE(1122)] = 91090, + [SMALL_STATE(1123)] = 91155, + [SMALL_STATE(1124)] = 91220, + [SMALL_STATE(1125)] = 91277, + [SMALL_STATE(1126)] = 91338, + [SMALL_STATE(1127)] = 91395, + [SMALL_STATE(1128)] = 91456, + [SMALL_STATE(1129)] = 91513, + [SMALL_STATE(1130)] = 91570, + [SMALL_STATE(1131)] = 91627, + [SMALL_STATE(1132)] = 91684, + [SMALL_STATE(1133)] = 91741, + [SMALL_STATE(1134)] = 91798, + [SMALL_STATE(1135)] = 91855, + [SMALL_STATE(1136)] = 91912, + [SMALL_STATE(1137)] = 91969, + [SMALL_STATE(1138)] = 92026, + [SMALL_STATE(1139)] = 92083, + [SMALL_STATE(1140)] = 92140, + [SMALL_STATE(1141)] = 92197, + [SMALL_STATE(1142)] = 92254, + [SMALL_STATE(1143)] = 92318, + [SMALL_STATE(1144)] = 92382, + [SMALL_STATE(1145)] = 92446, + [SMALL_STATE(1146)] = 92500, + [SMALL_STATE(1147)] = 92554, + [SMALL_STATE(1148)] = 92608, + [SMALL_STATE(1149)] = 92670, + [SMALL_STATE(1150)] = 92732, + [SMALL_STATE(1151)] = 92798, + [SMALL_STATE(1152)] = 92852, + [SMALL_STATE(1153)] = 92906, + [SMALL_STATE(1154)] = 92968, + [SMALL_STATE(1155)] = 93030, + [SMALL_STATE(1156)] = 93092, + [SMALL_STATE(1157)] = 93158, + [SMALL_STATE(1158)] = 93212, + [SMALL_STATE(1159)] = 93277, + [SMALL_STATE(1160)] = 93340, + [SMALL_STATE(1161)] = 93405, + [SMALL_STATE(1162)] = 93470, + [SMALL_STATE(1163)] = 93531, + [SMALL_STATE(1164)] = 93584, + [SMALL_STATE(1165)] = 93649, + [SMALL_STATE(1166)] = 93710, + [SMALL_STATE(1167)] = 93761, + [SMALL_STATE(1168)] = 93812, + [SMALL_STATE(1169)] = 93863, + [SMALL_STATE(1170)] = 93924, + [SMALL_STATE(1171)] = 93987, + [SMALL_STATE(1172)] = 94038, + [SMALL_STATE(1173)] = 94099, + [SMALL_STATE(1174)] = 94150, + [SMALL_STATE(1175)] = 94210, + [SMALL_STATE(1176)] = 94266, + [SMALL_STATE(1177)] = 94316, + [SMALL_STATE(1178)] = 94378, + [SMALL_STATE(1179)] = 94440, + [SMALL_STATE(1180)] = 94506, + [SMALL_STATE(1181)] = 94582, + [SMALL_STATE(1182)] = 94656, + [SMALL_STATE(1183)] = 94728, + [SMALL_STATE(1184)] = 94798, + [SMALL_STATE(1185)] = 94886, + [SMALL_STATE(1186)] = 94974, + [SMALL_STATE(1187)] = 95024, + [SMALL_STATE(1188)] = 95074, + [SMALL_STATE(1189)] = 95134, + [SMALL_STATE(1190)] = 95188, + [SMALL_STATE(1191)] = 95238, + [SMALL_STATE(1192)] = 95288, + [SMALL_STATE(1193)] = 95338, + [SMALL_STATE(1194)] = 95390, + [SMALL_STATE(1195)] = 95448, + [SMALL_STATE(1196)] = 95536, + [SMALL_STATE(1197)] = 95622, + [SMALL_STATE(1198)] = 95680, + [SMALL_STATE(1199)] = 95730, + [SMALL_STATE(1200)] = 95792, + [SMALL_STATE(1201)] = 95844, + [SMALL_STATE(1202)] = 95906, + [SMALL_STATE(1203)] = 95992, + [SMALL_STATE(1204)] = 96050, + [SMALL_STATE(1205)] = 96110, + [SMALL_STATE(1206)] = 96162, + [SMALL_STATE(1207)] = 96214, + [SMALL_STATE(1208)] = 96266, + [SMALL_STATE(1209)] = 96326, + [SMALL_STATE(1210)] = 96386, + [SMALL_STATE(1211)] = 96448, + [SMALL_STATE(1212)] = 96508, + [SMALL_STATE(1213)] = 96562, + [SMALL_STATE(1214)] = 96620, + [SMALL_STATE(1215)] = 96670, + [SMALL_STATE(1216)] = 96728, + [SMALL_STATE(1217)] = 96786, + [SMALL_STATE(1218)] = 96844, + [SMALL_STATE(1219)] = 96902, + [SMALL_STATE(1220)] = 96960, + [SMALL_STATE(1221)] = 97016, + [SMALL_STATE(1222)] = 97072, + [SMALL_STATE(1223)] = 97128, + [SMALL_STATE(1224)] = 97184, + [SMALL_STATE(1225)] = 97242, + [SMALL_STATE(1226)] = 97295, + [SMALL_STATE(1227)] = 97352, + [SMALL_STATE(1228)] = 97399, + [SMALL_STATE(1229)] = 97446, + [SMALL_STATE(1230)] = 97493, + [SMALL_STATE(1231)] = 97542, + [SMALL_STATE(1232)] = 97591, + [SMALL_STATE(1233)] = 97640, + [SMALL_STATE(1234)] = 97689, + [SMALL_STATE(1235)] = 97736, + [SMALL_STATE(1236)] = 97783, + [SMALL_STATE(1237)] = 97830, + [SMALL_STATE(1238)] = 97877, + [SMALL_STATE(1239)] = 97924, + [SMALL_STATE(1240)] = 97971, + [SMALL_STATE(1241)] = 98018, + [SMALL_STATE(1242)] = 98065, + [SMALL_STATE(1243)] = 98112, + [SMALL_STATE(1244)] = 98159, + [SMALL_STATE(1245)] = 98208, + [SMALL_STATE(1246)] = 98255, + [SMALL_STATE(1247)] = 98302, + [SMALL_STATE(1248)] = 98349, + [SMALL_STATE(1249)] = 98400, + [SMALL_STATE(1250)] = 98447, + [SMALL_STATE(1251)] = 98494, + [SMALL_STATE(1252)] = 98541, + [SMALL_STATE(1253)] = 98588, + [SMALL_STATE(1254)] = 98649, + [SMALL_STATE(1255)] = 98696, + [SMALL_STATE(1256)] = 98743, + [SMALL_STATE(1257)] = 98790, + [SMALL_STATE(1258)] = 98837, + [SMALL_STATE(1259)] = 98884, + [SMALL_STATE(1260)] = 98931, + [SMALL_STATE(1261)] = 98978, + [SMALL_STATE(1262)] = 99025, + [SMALL_STATE(1263)] = 99072, + [SMALL_STATE(1264)] = 99119, + [SMALL_STATE(1265)] = 99166, + [SMALL_STATE(1266)] = 99215, + [SMALL_STATE(1267)] = 99262, + [SMALL_STATE(1268)] = 99321, + [SMALL_STATE(1269)] = 99368, + [SMALL_STATE(1270)] = 99415, + [SMALL_STATE(1271)] = 99474, + [SMALL_STATE(1272)] = 99521, + [SMALL_STATE(1273)] = 99570, + [SMALL_STATE(1274)] = 99617, + [SMALL_STATE(1275)] = 99664, + [SMALL_STATE(1276)] = 99711, + [SMALL_STATE(1277)] = 99768, + [SMALL_STATE(1278)] = 99817, + [SMALL_STATE(1279)] = 99864, + [SMALL_STATE(1280)] = 99913, + [SMALL_STATE(1281)] = 99964, + [SMALL_STATE(1282)] = 100011, + [SMALL_STATE(1283)] = 100058, + [SMALL_STATE(1284)] = 100105, + [SMALL_STATE(1285)] = 100162, + [SMALL_STATE(1286)] = 100209, + [SMALL_STATE(1287)] = 100262, + [SMALL_STATE(1288)] = 100311, + [SMALL_STATE(1289)] = 100360, + [SMALL_STATE(1290)] = 100407, + [SMALL_STATE(1291)] = 100454, + [SMALL_STATE(1292)] = 100501, + [SMALL_STATE(1293)] = 100548, + [SMALL_STATE(1294)] = 100595, + [SMALL_STATE(1295)] = 100642, + [SMALL_STATE(1296)] = 100691, + [SMALL_STATE(1297)] = 100738, + [SMALL_STATE(1298)] = 100789, + [SMALL_STATE(1299)] = 100838, + [SMALL_STATE(1300)] = 100889, + [SMALL_STATE(1301)] = 100938, + [SMALL_STATE(1302)] = 100995, + [SMALL_STATE(1303)] = 101042, + [SMALL_STATE(1304)] = 101089, + [SMALL_STATE(1305)] = 101136, + [SMALL_STATE(1306)] = 101183, + [SMALL_STATE(1307)] = 101232, + [SMALL_STATE(1308)] = 101279, + [SMALL_STATE(1309)] = 101328, + [SMALL_STATE(1310)] = 101375, + [SMALL_STATE(1311)] = 101422, + [SMALL_STATE(1312)] = 101471, + [SMALL_STATE(1313)] = 101518, + [SMALL_STATE(1314)] = 101565, + [SMALL_STATE(1315)] = 101624, + [SMALL_STATE(1316)] = 101671, + [SMALL_STATE(1317)] = 101720, + [SMALL_STATE(1318)] = 101767, + [SMALL_STATE(1319)] = 101814, + [SMALL_STATE(1320)] = 101861, + [SMALL_STATE(1321)] = 101908, + [SMALL_STATE(1322)] = 101955, + [SMALL_STATE(1323)] = 102002, + [SMALL_STATE(1324)] = 102049, + [SMALL_STATE(1325)] = 102095, + [SMALL_STATE(1326)] = 102141, + [SMALL_STATE(1327)] = 102187, + [SMALL_STATE(1328)] = 102233, + [SMALL_STATE(1329)] = 102279, + [SMALL_STATE(1330)] = 102325, + [SMALL_STATE(1331)] = 102371, + [SMALL_STATE(1332)] = 102417, + [SMALL_STATE(1333)] = 102463, + [SMALL_STATE(1334)] = 102531, + [SMALL_STATE(1335)] = 102577, + [SMALL_STATE(1336)] = 102623, + [SMALL_STATE(1337)] = 102693, + [SMALL_STATE(1338)] = 102739, + [SMALL_STATE(1339)] = 102785, + [SMALL_STATE(1340)] = 102831, + [SMALL_STATE(1341)] = 102881, + [SMALL_STATE(1342)] = 102953, + [SMALL_STATE(1343)] = 102999, + [SMALL_STATE(1344)] = 103045, + [SMALL_STATE(1345)] = 103091, + [SMALL_STATE(1346)] = 103143, + [SMALL_STATE(1347)] = 103189, + [SMALL_STATE(1348)] = 103263, + [SMALL_STATE(1349)] = 103309, + [SMALL_STATE(1350)] = 103355, + [SMALL_STATE(1351)] = 103439, + [SMALL_STATE(1352)] = 103485, + [SMALL_STATE(1353)] = 103531, + [SMALL_STATE(1354)] = 103595, + [SMALL_STATE(1355)] = 103655, + [SMALL_STATE(1356)] = 103701, + [SMALL_STATE(1357)] = 103761, + [SMALL_STATE(1358)] = 103811, + [SMALL_STATE(1359)] = 103857, + [SMALL_STATE(1360)] = 103913, + [SMALL_STATE(1361)] = 103959, + [SMALL_STATE(1362)] = 104015, + [SMALL_STATE(1363)] = 104069, + [SMALL_STATE(1364)] = 104119, + [SMALL_STATE(1365)] = 104165, + [SMALL_STATE(1366)] = 104211, + [SMALL_STATE(1367)] = 104257, + [SMALL_STATE(1368)] = 104305, + [SMALL_STATE(1369)] = 104351, + [SMALL_STATE(1370)] = 104437, + [SMALL_STATE(1371)] = 104483, + [SMALL_STATE(1372)] = 104569, + [SMALL_STATE(1373)] = 104615, + [SMALL_STATE(1374)] = 104675, + [SMALL_STATE(1375)] = 104727, + [SMALL_STATE(1376)] = 104773, + [SMALL_STATE(1377)] = 104857, + [SMALL_STATE(1378)] = 104903, + [SMALL_STATE(1379)] = 104949, + [SMALL_STATE(1380)] = 104995, + [SMALL_STATE(1381)] = 105041, + [SMALL_STATE(1382)] = 105087, + [SMALL_STATE(1383)] = 105133, + [SMALL_STATE(1384)] = 105179, + [SMALL_STATE(1385)] = 105225, + [SMALL_STATE(1386)] = 105271, + [SMALL_STATE(1387)] = 105329, + [SMALL_STATE(1388)] = 105379, + [SMALL_STATE(1389)] = 105425, + [SMALL_STATE(1390)] = 105475, + [SMALL_STATE(1391)] = 105535, + [SMALL_STATE(1392)] = 105585, + [SMALL_STATE(1393)] = 105631, + [SMALL_STATE(1394)] = 105717, + [SMALL_STATE(1395)] = 105763, + [SMALL_STATE(1396)] = 105809, + [SMALL_STATE(1397)] = 105855, + [SMALL_STATE(1398)] = 105901, + [SMALL_STATE(1399)] = 105947, + [SMALL_STATE(1400)] = 105993, + [SMALL_STATE(1401)] = 106039, + [SMALL_STATE(1402)] = 106085, + [SMALL_STATE(1403)] = 106131, + [SMALL_STATE(1404)] = 106177, + [SMALL_STATE(1405)] = 106223, + [SMALL_STATE(1406)] = 106269, + [SMALL_STATE(1407)] = 106315, + [SMALL_STATE(1408)] = 106361, + [SMALL_STATE(1409)] = 106411, + [SMALL_STATE(1410)] = 106457, + [SMALL_STATE(1411)] = 106516, + [SMALL_STATE(1412)] = 106561, + [SMALL_STATE(1413)] = 106630, + [SMALL_STATE(1414)] = 106675, + [SMALL_STATE(1415)] = 106720, + [SMALL_STATE(1416)] = 106767, + [SMALL_STATE(1417)] = 106816, + [SMALL_STATE(1418)] = 106873, + [SMALL_STATE(1419)] = 106918, + [SMALL_STATE(1420)] = 106997, + [SMALL_STATE(1421)] = 107046, + [SMALL_STATE(1422)] = 107101, + [SMALL_STATE(1423)] = 107150, + [SMALL_STATE(1424)] = 107209, + [SMALL_STATE(1425)] = 107266, + [SMALL_STATE(1426)] = 107315, + [SMALL_STATE(1427)] = 107360, + [SMALL_STATE(1428)] = 107407, + [SMALL_STATE(1429)] = 107452, + [SMALL_STATE(1430)] = 107499, + [SMALL_STATE(1431)] = 107578, + [SMALL_STATE(1432)] = 107627, + [SMALL_STATE(1433)] = 107674, + [SMALL_STATE(1434)] = 107721, + [SMALL_STATE(1435)] = 107768, + [SMALL_STATE(1436)] = 107815, + [SMALL_STATE(1437)] = 107860, + [SMALL_STATE(1438)] = 107907, + [SMALL_STATE(1439)] = 107956, + [SMALL_STATE(1440)] = 108001, + [SMALL_STATE(1441)] = 108048, + [SMALL_STATE(1442)] = 108095, + [SMALL_STATE(1443)] = 108142, + [SMALL_STATE(1444)] = 108189, + [SMALL_STATE(1445)] = 108236, + [SMALL_STATE(1446)] = 108287, + [SMALL_STATE(1447)] = 108336, + [SMALL_STATE(1448)] = 108381, + [SMALL_STATE(1449)] = 108428, + [SMALL_STATE(1450)] = 108475, + [SMALL_STATE(1451)] = 108522, + [SMALL_STATE(1452)] = 108569, + [SMALL_STATE(1453)] = 108616, + [SMALL_STATE(1454)] = 108671, + [SMALL_STATE(1455)] = 108718, + [SMALL_STATE(1456)] = 108765, + [SMALL_STATE(1457)] = 108810, + [SMALL_STATE(1458)] = 108857, + [SMALL_STATE(1459)] = 108902, + [SMALL_STATE(1460)] = 108949, + [SMALL_STATE(1461)] = 108996, + [SMALL_STATE(1462)] = 109077, + [SMALL_STATE(1463)] = 109124, + [SMALL_STATE(1464)] = 109171, + [SMALL_STATE(1465)] = 109252, + [SMALL_STATE(1466)] = 109333, + [SMALL_STATE(1467)] = 109382, + [SMALL_STATE(1468)] = 109429, + [SMALL_STATE(1469)] = 109478, + [SMALL_STATE(1470)] = 109525, + [SMALL_STATE(1471)] = 109572, + [SMALL_STATE(1472)] = 109619, + [SMALL_STATE(1473)] = 109672, + [SMALL_STATE(1474)] = 109725, + [SMALL_STATE(1475)] = 109770, + [SMALL_STATE(1476)] = 109819, + [SMALL_STATE(1477)] = 109890, + [SMALL_STATE(1478)] = 109953, + [SMALL_STATE(1479)] = 110012, + [SMALL_STATE(1480)] = 110059, + [SMALL_STATE(1481)] = 110110, + [SMALL_STATE(1482)] = 110169, + [SMALL_STATE(1483)] = 110234, + [SMALL_STATE(1484)] = 110301, + [SMALL_STATE(1485)] = 110353, + [SMALL_STATE(1486)] = 110401, + [SMALL_STATE(1487)] = 110455, + [SMALL_STATE(1488)] = 110507, + [SMALL_STATE(1489)] = 110555, + [SMALL_STATE(1490)] = 110613, + [SMALL_STATE(1491)] = 110661, + [SMALL_STATE(1492)] = 110705, + [SMALL_STATE(1493)] = 110755, + [SMALL_STATE(1494)] = 110837, + [SMALL_STATE(1495)] = 110883, + [SMALL_STATE(1496)] = 110929, + [SMALL_STATE(1497)] = 110981, + [SMALL_STATE(1498)] = 111035, + [SMALL_STATE(1499)] = 111081, + [SMALL_STATE(1500)] = 111127, + [SMALL_STATE(1501)] = 111203, + [SMALL_STATE(1502)] = 111261, + [SMALL_STATE(1503)] = 111309, + [SMALL_STATE(1504)] = 111367, + [SMALL_STATE(1505)] = 111413, + [SMALL_STATE(1506)] = 111461, + [SMALL_STATE(1507)] = 111513, + [SMALL_STATE(1508)] = 111571, + [SMALL_STATE(1509)] = 111629, + [SMALL_STATE(1510)] = 111679, + [SMALL_STATE(1511)] = 111741, + [SMALL_STATE(1512)] = 111813, + [SMALL_STATE(1513)] = 111883, + [SMALL_STATE(1514)] = 111951, + [SMALL_STATE(1515)] = 112017, + [SMALL_STATE(1516)] = 112061, + [SMALL_STATE(1517)] = 112119, + [SMALL_STATE(1518)] = 112165, + [SMALL_STATE(1519)] = 112213, + [SMALL_STATE(1520)] = 112273, + [SMALL_STATE(1521)] = 112319, + [SMALL_STATE(1522)] = 112387, + [SMALL_STATE(1523)] = 112431, + [SMALL_STATE(1524)] = 112497, + [SMALL_STATE(1525)] = 112547, + [SMALL_STATE(1526)] = 112593, + [SMALL_STATE(1527)] = 112657, + [SMALL_STATE(1528)] = 112701, + [SMALL_STATE(1529)] = 112747, + [SMALL_STATE(1530)] = 112793, + [SMALL_STATE(1531)] = 112837, + [SMALL_STATE(1532)] = 112915, + [SMALL_STATE(1533)] = 112997, + [SMALL_STATE(1534)] = 113079, + [SMALL_STATE(1535)] = 113125, + [SMALL_STATE(1536)] = 113173, + [SMALL_STATE(1537)] = 113219, + [SMALL_STATE(1538)] = 113265, + [SMALL_STATE(1539)] = 113311, + [SMALL_STATE(1540)] = 113389, + [SMALL_STATE(1541)] = 113439, + [SMALL_STATE(1542)] = 113485, + [SMALL_STATE(1543)] = 113529, + [SMALL_STATE(1544)] = 113591, + [SMALL_STATE(1545)] = 113637, + [SMALL_STATE(1546)] = 113683, + [SMALL_STATE(1547)] = 113729, + [SMALL_STATE(1548)] = 113809, + [SMALL_STATE(1549)] = 113889, + [SMALL_STATE(1550)] = 113941, + [SMALL_STATE(1551)] = 113991, + [SMALL_STATE(1552)] = 114037, + [SMALL_STATE(1553)] = 114083, + [SMALL_STATE(1554)] = 114127, + [SMALL_STATE(1555)] = 114185, + [SMALL_STATE(1556)] = 114239, + [SMALL_STATE(1557)] = 114285, + [SMALL_STATE(1558)] = 114363, + [SMALL_STATE(1559)] = 114407, + [SMALL_STATE(1560)] = 114453, + [SMALL_STATE(1561)] = 114531, + [SMALL_STATE(1562)] = 114577, + [SMALL_STATE(1563)] = 114653, + [SMALL_STATE(1564)] = 114699, + [SMALL_STATE(1565)] = 114777, + [SMALL_STATE(1566)] = 114825, + [SMALL_STATE(1567)] = 114871, + [SMALL_STATE(1568)] = 114917, + [SMALL_STATE(1569)] = 114963, + [SMALL_STATE(1570)] = 115009, + [SMALL_STATE(1571)] = 115063, + [SMALL_STATE(1572)] = 115109, + [SMALL_STATE(1573)] = 115155, + [SMALL_STATE(1574)] = 115203, + [SMALL_STATE(1575)] = 115251, + [SMALL_STATE(1576)] = 115297, + [SMALL_STATE(1577)] = 115345, + [SMALL_STATE(1578)] = 115389, + [SMALL_STATE(1579)] = 115435, + [SMALL_STATE(1580)] = 115483, + [SMALL_STATE(1581)] = 115531, + [SMALL_STATE(1582)] = 115579, + [SMALL_STATE(1583)] = 115627, + [SMALL_STATE(1584)] = 115673, + [SMALL_STATE(1585)] = 115731, + [SMALL_STATE(1586)] = 115777, + [SMALL_STATE(1587)] = 115823, + [SMALL_STATE(1588)] = 115869, + [SMALL_STATE(1589)] = 115919, + [SMALL_STATE(1590)] = 115967, + [SMALL_STATE(1591)] = 116011, + [SMALL_STATE(1592)] = 116059, + [SMALL_STATE(1593)] = 116139, + [SMALL_STATE(1594)] = 116187, + [SMALL_STATE(1595)] = 116233, + [SMALL_STATE(1596)] = 116279, + [SMALL_STATE(1597)] = 116323, + [SMALL_STATE(1598)] = 116371, + [SMALL_STATE(1599)] = 116415, + [SMALL_STATE(1600)] = 116473, + [SMALL_STATE(1601)] = 116517, + [SMALL_STATE(1602)] = 116597, + [SMALL_STATE(1603)] = 116645, + [SMALL_STATE(1604)] = 116691, + [SMALL_STATE(1605)] = 116737, + [SMALL_STATE(1606)] = 116789, + [SMALL_STATE(1607)] = 116837, + [SMALL_STATE(1608)] = 116895, + [SMALL_STATE(1609)] = 116939, + [SMALL_STATE(1610)] = 116997, + [SMALL_STATE(1611)] = 117055, + [SMALL_STATE(1612)] = 117117, + [SMALL_STATE(1613)] = 117187, + [SMALL_STATE(1614)] = 117233, + [SMALL_STATE(1615)] = 117301, + [SMALL_STATE(1616)] = 117347, + [SMALL_STATE(1617)] = 117395, + [SMALL_STATE(1618)] = 117461, + [SMALL_STATE(1619)] = 117525, + [SMALL_STATE(1620)] = 117573, + [SMALL_STATE(1621)] = 117653, + [SMALL_STATE(1622)] = 117697, + [SMALL_STATE(1623)] = 117741, + [SMALL_STATE(1624)] = 117785, + [SMALL_STATE(1625)] = 117831, + [SMALL_STATE(1626)] = 117877, + [SMALL_STATE(1627)] = 117923, + [SMALL_STATE(1628)] = 117968, + [SMALL_STATE(1629)] = 118011, + [SMALL_STATE(1630)] = 118054, + [SMALL_STATE(1631)] = 118111, + [SMALL_STATE(1632)] = 118154, + [SMALL_STATE(1633)] = 118201, + [SMALL_STATE(1634)] = 118252, + [SMALL_STATE(1635)] = 118295, + [SMALL_STATE(1636)] = 118338, + [SMALL_STATE(1637)] = 118383, + [SMALL_STATE(1638)] = 118430, + [SMALL_STATE(1639)] = 118473, + [SMALL_STATE(1640)] = 118516, + [SMALL_STATE(1641)] = 118563, + [SMALL_STATE(1642)] = 118642, + [SMALL_STATE(1643)] = 118721, + [SMALL_STATE(1644)] = 118764, + [SMALL_STATE(1645)] = 118807, + [SMALL_STATE(1646)] = 118850, + [SMALL_STATE(1647)] = 118893, + [SMALL_STATE(1648)] = 118940, + [SMALL_STATE(1649)] = 118983, + [SMALL_STATE(1650)] = 119028, + [SMALL_STATE(1651)] = 119073, + [SMALL_STATE(1652)] = 119116, + [SMALL_STATE(1653)] = 119161, + [SMALL_STATE(1654)] = 119204, + [SMALL_STATE(1655)] = 119247, + [SMALL_STATE(1656)] = 119290, + [SMALL_STATE(1657)] = 119333, + [SMALL_STATE(1658)] = 119376, + [SMALL_STATE(1659)] = 119421, + [SMALL_STATE(1660)] = 119464, + [SMALL_STATE(1661)] = 119543, + [SMALL_STATE(1662)] = 119588, + [SMALL_STATE(1663)] = 119633, + [SMALL_STATE(1664)] = 119678, + [SMALL_STATE(1665)] = 119731, + [SMALL_STATE(1666)] = 119774, + [SMALL_STATE(1667)] = 119851, + [SMALL_STATE(1668)] = 119894, + [SMALL_STATE(1669)] = 119941, + [SMALL_STATE(1670)] = 119986, + [SMALL_STATE(1671)] = 120043, + [SMALL_STATE(1672)] = 120096, + [SMALL_STATE(1673)] = 120139, + [SMALL_STATE(1674)] = 120202, + [SMALL_STATE(1675)] = 120267, + [SMALL_STATE(1676)] = 120324, + [SMALL_STATE(1677)] = 120367, + [SMALL_STATE(1678)] = 120412, + [SMALL_STATE(1679)] = 120455, + [SMALL_STATE(1680)] = 120522, + [SMALL_STATE(1681)] = 120565, + [SMALL_STATE(1682)] = 120608, + [SMALL_STATE(1683)] = 120655, + [SMALL_STATE(1684)] = 120724, + [SMALL_STATE(1685)] = 120785, + [SMALL_STATE(1686)] = 120862, + [SMALL_STATE(1687)] = 120905, + [SMALL_STATE(1688)] = 120948, + [SMALL_STATE(1689)] = 120991, + [SMALL_STATE(1690)] = 121034, + [SMALL_STATE(1691)] = 121083, + [SMALL_STATE(1692)] = 121126, + [SMALL_STATE(1693)] = 121169, + [SMALL_STATE(1694)] = 121212, + [SMALL_STATE(1695)] = 121255, + [SMALL_STATE(1696)] = 121298, + [SMALL_STATE(1697)] = 121343, + [SMALL_STATE(1698)] = 121386, + [SMALL_STATE(1699)] = 121429, + [SMALL_STATE(1700)] = 121472, + [SMALL_STATE(1701)] = 121515, + [SMALL_STATE(1702)] = 121558, + [SMALL_STATE(1703)] = 121601, + [SMALL_STATE(1704)] = 121646, + [SMALL_STATE(1705)] = 121691, + [SMALL_STATE(1706)] = 121734, + [SMALL_STATE(1707)] = 121777, + [SMALL_STATE(1708)] = 121820, + [SMALL_STATE(1709)] = 121863, + [SMALL_STATE(1710)] = 121908, + [SMALL_STATE(1711)] = 121951, + [SMALL_STATE(1712)] = 121994, + [SMALL_STATE(1713)] = 122051, + [SMALL_STATE(1714)] = 122094, + [SMALL_STATE(1715)] = 122137, + [SMALL_STATE(1716)] = 122180, + [SMALL_STATE(1717)] = 122223, + [SMALL_STATE(1718)] = 122266, + [SMALL_STATE(1719)] = 122309, + [SMALL_STATE(1720)] = 122352, + [SMALL_STATE(1721)] = 122395, + [SMALL_STATE(1722)] = 122438, + [SMALL_STATE(1723)] = 122481, + [SMALL_STATE(1724)] = 122524, + [SMALL_STATE(1725)] = 122567, + [SMALL_STATE(1726)] = 122612, + [SMALL_STATE(1727)] = 122655, + [SMALL_STATE(1728)] = 122698, + [SMALL_STATE(1729)] = 122743, + [SMALL_STATE(1730)] = 122786, + [SMALL_STATE(1731)] = 122829, + [SMALL_STATE(1732)] = 122872, + [SMALL_STATE(1733)] = 122917, + [SMALL_STATE(1734)] = 122960, + [SMALL_STATE(1735)] = 123007, + [SMALL_STATE(1736)] = 123050, + [SMALL_STATE(1737)] = 123093, + [SMALL_STATE(1738)] = 123136, + [SMALL_STATE(1739)] = 123179, + [SMALL_STATE(1740)] = 123222, + [SMALL_STATE(1741)] = 123265, + [SMALL_STATE(1742)] = 123308, + [SMALL_STATE(1743)] = 123351, + [SMALL_STATE(1744)] = 123394, + [SMALL_STATE(1745)] = 123437, + [SMALL_STATE(1746)] = 123480, + [SMALL_STATE(1747)] = 123523, + [SMALL_STATE(1748)] = 123568, + [SMALL_STATE(1749)] = 123615, + [SMALL_STATE(1750)] = 123658, + [SMALL_STATE(1751)] = 123701, + [SMALL_STATE(1752)] = 123744, + [SMALL_STATE(1753)] = 123787, + [SMALL_STATE(1754)] = 123830, + [SMALL_STATE(1755)] = 123873, + [SMALL_STATE(1756)] = 123916, + [SMALL_STATE(1757)] = 123959, + [SMALL_STATE(1758)] = 124002, + [SMALL_STATE(1759)] = 124045, + [SMALL_STATE(1760)] = 124088, + [SMALL_STATE(1761)] = 124131, + [SMALL_STATE(1762)] = 124174, + [SMALL_STATE(1763)] = 124219, + [SMALL_STATE(1764)] = 124264, + [SMALL_STATE(1765)] = 124307, + [SMALL_STATE(1766)] = 124352, + [SMALL_STATE(1767)] = 124395, + [SMALL_STATE(1768)] = 124438, + [SMALL_STATE(1769)] = 124483, + [SMALL_STATE(1770)] = 124528, + [SMALL_STATE(1771)] = 124571, + [SMALL_STATE(1772)] = 124616, + [SMALL_STATE(1773)] = 124659, + [SMALL_STATE(1774)] = 124702, + [SMALL_STATE(1775)] = 124745, + [SMALL_STATE(1776)] = 124788, + [SMALL_STATE(1777)] = 124831, + [SMALL_STATE(1778)] = 124874, + [SMALL_STATE(1779)] = 124917, + [SMALL_STATE(1780)] = 124962, + [SMALL_STATE(1781)] = 125009, + [SMALL_STATE(1782)] = 125056, + [SMALL_STATE(1783)] = 125099, + [SMALL_STATE(1784)] = 125142, + [SMALL_STATE(1785)] = 125185, + [SMALL_STATE(1786)] = 125228, + [SMALL_STATE(1787)] = 125271, + [SMALL_STATE(1788)] = 125316, + [SMALL_STATE(1789)] = 125361, + [SMALL_STATE(1790)] = 125404, + [SMALL_STATE(1791)] = 125447, + [SMALL_STATE(1792)] = 125490, + [SMALL_STATE(1793)] = 125533, + [SMALL_STATE(1794)] = 125576, + [SMALL_STATE(1795)] = 125619, + [SMALL_STATE(1796)] = 125662, + [SMALL_STATE(1797)] = 125705, + [SMALL_STATE(1798)] = 125748, + [SMALL_STATE(1799)] = 125791, + [SMALL_STATE(1800)] = 125834, + [SMALL_STATE(1801)] = 125885, + [SMALL_STATE(1802)] = 125932, + [SMALL_STATE(1803)] = 125985, + [SMALL_STATE(1804)] = 126030, + [SMALL_STATE(1805)] = 126075, + [SMALL_STATE(1806)] = 126120, + [SMALL_STATE(1807)] = 126165, + [SMALL_STATE(1808)] = 126210, + [SMALL_STATE(1809)] = 126255, + [SMALL_STATE(1810)] = 126304, + [SMALL_STATE(1811)] = 126347, + [SMALL_STATE(1812)] = 126392, + [SMALL_STATE(1813)] = 126435, + [SMALL_STATE(1814)] = 126480, + [SMALL_STATE(1815)] = 126523, + [SMALL_STATE(1816)] = 126566, + [SMALL_STATE(1817)] = 126609, + [SMALL_STATE(1818)] = 126660, + [SMALL_STATE(1819)] = 126705, + [SMALL_STATE(1820)] = 126748, + [SMALL_STATE(1821)] = 126791, + [SMALL_STATE(1822)] = 126836, + [SMALL_STATE(1823)] = 126881, + [SMALL_STATE(1824)] = 126926, + [SMALL_STATE(1825)] = 126969, + [SMALL_STATE(1826)] = 127012, + [SMALL_STATE(1827)] = 127055, + [SMALL_STATE(1828)] = 127100, + [SMALL_STATE(1829)] = 127143, + [SMALL_STATE(1830)] = 127186, + [SMALL_STATE(1831)] = 127229, + [SMALL_STATE(1832)] = 127274, + [SMALL_STATE(1833)] = 127317, + [SMALL_STATE(1834)] = 127360, + [SMALL_STATE(1835)] = 127403, + [SMALL_STATE(1836)] = 127448, + [SMALL_STATE(1837)] = 127491, + [SMALL_STATE(1838)] = 127533, + [SMALL_STATE(1839)] = 127575, + [SMALL_STATE(1840)] = 127617, + [SMALL_STATE(1841)] = 127659, + [SMALL_STATE(1842)] = 127701, + [SMALL_STATE(1843)] = 127743, + [SMALL_STATE(1844)] = 127785, + [SMALL_STATE(1845)] = 127827, + [SMALL_STATE(1846)] = 127869, + [SMALL_STATE(1847)] = 127911, + [SMALL_STATE(1848)] = 127953, + [SMALL_STATE(1849)] = 127995, + [SMALL_STATE(1850)] = 128037, + [SMALL_STATE(1851)] = 128079, + [SMALL_STATE(1852)] = 128121, + [SMALL_STATE(1853)] = 128163, + [SMALL_STATE(1854)] = 128205, + [SMALL_STATE(1855)] = 128247, + [SMALL_STATE(1856)] = 128289, + [SMALL_STATE(1857)] = 128331, + [SMALL_STATE(1858)] = 128373, + [SMALL_STATE(1859)] = 128415, + [SMALL_STATE(1860)] = 128457, + [SMALL_STATE(1861)] = 128503, + [SMALL_STATE(1862)] = 128545, + [SMALL_STATE(1863)] = 128587, + [SMALL_STATE(1864)] = 128629, + [SMALL_STATE(1865)] = 128671, + [SMALL_STATE(1866)] = 128713, + [SMALL_STATE(1867)] = 128755, + [SMALL_STATE(1868)] = 128797, + [SMALL_STATE(1869)] = 128843, + [SMALL_STATE(1870)] = 128887, + [SMALL_STATE(1871)] = 128929, + [SMALL_STATE(1872)] = 128971, + [SMALL_STATE(1873)] = 129013, + [SMALL_STATE(1874)] = 129057, + [SMALL_STATE(1875)] = 129103, + [SMALL_STATE(1876)] = 129147, + [SMALL_STATE(1877)] = 129189, + [SMALL_STATE(1878)] = 129233, + [SMALL_STATE(1879)] = 129275, + [SMALL_STATE(1880)] = 129317, + [SMALL_STATE(1881)] = 129359, + [SMALL_STATE(1882)] = 129401, + [SMALL_STATE(1883)] = 129443, + [SMALL_STATE(1884)] = 129485, + [SMALL_STATE(1885)] = 129527, + [SMALL_STATE(1886)] = 129569, + [SMALL_STATE(1887)] = 129611, + [SMALL_STATE(1888)] = 129657, + [SMALL_STATE(1889)] = 129699, + [SMALL_STATE(1890)] = 129741, + [SMALL_STATE(1891)] = 129783, + [SMALL_STATE(1892)] = 129829, + [SMALL_STATE(1893)] = 129871, + [SMALL_STATE(1894)] = 129917, + [SMALL_STATE(1895)] = 129959, + [SMALL_STATE(1896)] = 130001, + [SMALL_STATE(1897)] = 130043, + [SMALL_STATE(1898)] = 130085, + [SMALL_STATE(1899)] = 130127, + [SMALL_STATE(1900)] = 130169, + [SMALL_STATE(1901)] = 130211, + [SMALL_STATE(1902)] = 130253, + [SMALL_STATE(1903)] = 130295, + [SMALL_STATE(1904)] = 130337, + [SMALL_STATE(1905)] = 130379, + [SMALL_STATE(1906)] = 130423, + [SMALL_STATE(1907)] = 130465, + [SMALL_STATE(1908)] = 130507, + [SMALL_STATE(1909)] = 130549, + [SMALL_STATE(1910)] = 130591, + [SMALL_STATE(1911)] = 130633, + [SMALL_STATE(1912)] = 130675, + [SMALL_STATE(1913)] = 130717, + [SMALL_STATE(1914)] = 130759, + [SMALL_STATE(1915)] = 130801, + [SMALL_STATE(1916)] = 130843, + [SMALL_STATE(1917)] = 130885, + [SMALL_STATE(1918)] = 130927, + [SMALL_STATE(1919)] = 130969, + [SMALL_STATE(1920)] = 131011, + [SMALL_STATE(1921)] = 131053, + [SMALL_STATE(1922)] = 131097, + [SMALL_STATE(1923)] = 131139, + [SMALL_STATE(1924)] = 131183, + [SMALL_STATE(1925)] = 131225, + [SMALL_STATE(1926)] = 131267, + [SMALL_STATE(1927)] = 131309, + [SMALL_STATE(1928)] = 131351, + [SMALL_STATE(1929)] = 131397, + [SMALL_STATE(1930)] = 131443, + [SMALL_STATE(1931)] = 131485, + [SMALL_STATE(1932)] = 131527, + [SMALL_STATE(1933)] = 131569, + [SMALL_STATE(1934)] = 131611, + [SMALL_STATE(1935)] = 131653, + [SMALL_STATE(1936)] = 131695, + [SMALL_STATE(1937)] = 131737, + [SMALL_STATE(1938)] = 131779, + [SMALL_STATE(1939)] = 131821, + [SMALL_STATE(1940)] = 131863, + [SMALL_STATE(1941)] = 131905, + [SMALL_STATE(1942)] = 131947, + [SMALL_STATE(1943)] = 131989, + [SMALL_STATE(1944)] = 132031, + [SMALL_STATE(1945)] = 132073, + [SMALL_STATE(1946)] = 132115, + [SMALL_STATE(1947)] = 132157, + [SMALL_STATE(1948)] = 132199, + [SMALL_STATE(1949)] = 132241, + [SMALL_STATE(1950)] = 132283, + [SMALL_STATE(1951)] = 132325, + [SMALL_STATE(1952)] = 132367, + [SMALL_STATE(1953)] = 132409, + [SMALL_STATE(1954)] = 132451, + [SMALL_STATE(1955)] = 132493, + [SMALL_STATE(1956)] = 132535, + [SMALL_STATE(1957)] = 132577, + [SMALL_STATE(1958)] = 132619, + [SMALL_STATE(1959)] = 132661, + [SMALL_STATE(1960)] = 132705, + [SMALL_STATE(1961)] = 132749, + [SMALL_STATE(1962)] = 132791, + [SMALL_STATE(1963)] = 132833, + [SMALL_STATE(1964)] = 132885, + [SMALL_STATE(1965)] = 132927, + [SMALL_STATE(1966)] = 132968, + [SMALL_STATE(1967)] = 133009, + [SMALL_STATE(1968)] = 133050, + [SMALL_STATE(1969)] = 133111, + [SMALL_STATE(1970)] = 133152, + [SMALL_STATE(1971)] = 133215, + [SMALL_STATE(1972)] = 133256, + [SMALL_STATE(1973)] = 133321, + [SMALL_STATE(1974)] = 133362, + [SMALL_STATE(1975)] = 133429, + [SMALL_STATE(1976)] = 133470, + [SMALL_STATE(1977)] = 133511, + [SMALL_STATE(1978)] = 133552, + [SMALL_STATE(1979)] = 133611, + [SMALL_STATE(1980)] = 133652, + [SMALL_STATE(1981)] = 133701, + [SMALL_STATE(1982)] = 133742, + [SMALL_STATE(1983)] = 133783, + [SMALL_STATE(1984)] = 133824, + [SMALL_STATE(1985)] = 133865, + [SMALL_STATE(1986)] = 133906, + [SMALL_STATE(1987)] = 133961, + [SMALL_STATE(1988)] = 134002, + [SMALL_STATE(1989)] = 134043, + [SMALL_STATE(1990)] = 134084, + [SMALL_STATE(1991)] = 134139, + [SMALL_STATE(1992)] = 134184, + [SMALL_STATE(1993)] = 134225, + [SMALL_STATE(1994)] = 134266, + [SMALL_STATE(1995)] = 134321, + [SMALL_STATE(1996)] = 134374, + [SMALL_STATE(1997)] = 134415, + [SMALL_STATE(1998)] = 134456, + [SMALL_STATE(1999)] = 134497, + [SMALL_STATE(2000)] = 134572, + [SMALL_STATE(2001)] = 134617, + [SMALL_STATE(2002)] = 134692, + [SMALL_STATE(2003)] = 134733, + [SMALL_STATE(2004)] = 134776, + [SMALL_STATE(2005)] = 134851, + [SMALL_STATE(2006)] = 134892, + [SMALL_STATE(2007)] = 134949, + [SMALL_STATE(2008)] = 135024, + [SMALL_STATE(2009)] = 135065, + [SMALL_STATE(2010)] = 135106, + [SMALL_STATE(2011)] = 135147, + [SMALL_STATE(2012)] = 135192, + [SMALL_STATE(2013)] = 135233, + [SMALL_STATE(2014)] = 135278, + [SMALL_STATE(2015)] = 135323, + [SMALL_STATE(2016)] = 135368, + [SMALL_STATE(2017)] = 135409, + [SMALL_STATE(2018)] = 135450, + [SMALL_STATE(2019)] = 135491, + [SMALL_STATE(2020)] = 135532, + [SMALL_STATE(2021)] = 135573, + [SMALL_STATE(2022)] = 135614, + [SMALL_STATE(2023)] = 135655, + [SMALL_STATE(2024)] = 135696, + [SMALL_STATE(2025)] = 135751, + [SMALL_STATE(2026)] = 135792, + [SMALL_STATE(2027)] = 135833, + [SMALL_STATE(2028)] = 135880, + [SMALL_STATE(2029)] = 135937, + [SMALL_STATE(2030)] = 135978, + [SMALL_STATE(2031)] = 136023, + [SMALL_STATE(2032)] = 136068, + [SMALL_STATE(2033)] = 136109, + [SMALL_STATE(2034)] = 136160, + [SMALL_STATE(2035)] = 136205, + [SMALL_STATE(2036)] = 136252, + [SMALL_STATE(2037)] = 136309, + [SMALL_STATE(2038)] = 136350, + [SMALL_STATE(2039)] = 136391, + [SMALL_STATE(2040)] = 136432, + [SMALL_STATE(2041)] = 136477, + [SMALL_STATE(2042)] = 136518, + [SMALL_STATE(2043)] = 136559, + [SMALL_STATE(2044)] = 136634, + [SMALL_STATE(2045)] = 136676, + [SMALL_STATE(2046)] = 136718, + [SMALL_STATE(2047)] = 136760, + [SMALL_STATE(2048)] = 136802, + [SMALL_STATE(2049)] = 136844, + [SMALL_STATE(2050)] = 136886, + [SMALL_STATE(2051)] = 136926, + [SMALL_STATE(2052)] = 136976, + [SMALL_STATE(2053)] = 137019, + [SMALL_STATE(2054)] = 137062, + [SMALL_STATE(2055)] = 137099, + [SMALL_STATE(2056)] = 137155, + [SMALL_STATE(2057)] = 137211, + [SMALL_STATE(2058)] = 137267, + [SMALL_STATE(2059)] = 137323, + [SMALL_STATE(2060)] = 137379, + [SMALL_STATE(2061)] = 137435, + [SMALL_STATE(2062)] = 137491, + [SMALL_STATE(2063)] = 137547, + [SMALL_STATE(2064)] = 137603, + [SMALL_STATE(2065)] = 137659, + [SMALL_STATE(2066)] = 137715, + [SMALL_STATE(2067)] = 137771, + [SMALL_STATE(2068)] = 137827, + [SMALL_STATE(2069)] = 137883, + [SMALL_STATE(2070)] = 137939, + [SMALL_STATE(2071)] = 137995, + [SMALL_STATE(2072)] = 138051, + [SMALL_STATE(2073)] = 138107, + [SMALL_STATE(2074)] = 138163, + [SMALL_STATE(2075)] = 138219, + [SMALL_STATE(2076)] = 138275, + [SMALL_STATE(2077)] = 138331, + [SMALL_STATE(2078)] = 138387, + [SMALL_STATE(2079)] = 138443, + [SMALL_STATE(2080)] = 138499, + [SMALL_STATE(2081)] = 138555, + [SMALL_STATE(2082)] = 138611, + [SMALL_STATE(2083)] = 138667, + [SMALL_STATE(2084)] = 138723, + [SMALL_STATE(2085)] = 138779, + [SMALL_STATE(2086)] = 138835, + [SMALL_STATE(2087)] = 138891, + [SMALL_STATE(2088)] = 138947, + [SMALL_STATE(2089)] = 139003, + [SMALL_STATE(2090)] = 139059, + [SMALL_STATE(2091)] = 139115, + [SMALL_STATE(2092)] = 139171, + [SMALL_STATE(2093)] = 139227, + [SMALL_STATE(2094)] = 139283, + [SMALL_STATE(2095)] = 139339, + [SMALL_STATE(2096)] = 139395, + [SMALL_STATE(2097)] = 139451, + [SMALL_STATE(2098)] = 139507, + [SMALL_STATE(2099)] = 139563, + [SMALL_STATE(2100)] = 139619, + [SMALL_STATE(2101)] = 139675, + [SMALL_STATE(2102)] = 139731, + [SMALL_STATE(2103)] = 139787, + [SMALL_STATE(2104)] = 139843, + [SMALL_STATE(2105)] = 139899, + [SMALL_STATE(2106)] = 139955, + [SMALL_STATE(2107)] = 139989, + [SMALL_STATE(2108)] = 140045, + [SMALL_STATE(2109)] = 140098, + [SMALL_STATE(2110)] = 140151, + [SMALL_STATE(2111)] = 140204, + [SMALL_STATE(2112)] = 140257, + [SMALL_STATE(2113)] = 140310, + [SMALL_STATE(2114)] = 140365, + [SMALL_STATE(2115)] = 140418, + [SMALL_STATE(2116)] = 140471, + [SMALL_STATE(2117)] = 140524, + [SMALL_STATE(2118)] = 140577, + [SMALL_STATE(2119)] = 140630, + [SMALL_STATE(2120)] = 140683, + [SMALL_STATE(2121)] = 140736, + [SMALL_STATE(2122)] = 140789, + [SMALL_STATE(2123)] = 140844, + [SMALL_STATE(2124)] = 140897, + [SMALL_STATE(2125)] = 140950, + [SMALL_STATE(2126)] = 141003, + [SMALL_STATE(2127)] = 141056, + [SMALL_STATE(2128)] = 141109, + [SMALL_STATE(2129)] = 141162, + [SMALL_STATE(2130)] = 141215, + [SMALL_STATE(2131)] = 141258, + [SMALL_STATE(2132)] = 141301, + [SMALL_STATE(2133)] = 141356, + [SMALL_STATE(2134)] = 141409, + [SMALL_STATE(2135)] = 141464, + [SMALL_STATE(2136)] = 141517, + [SMALL_STATE(2137)] = 141570, + [SMALL_STATE(2138)] = 141613, + [SMALL_STATE(2139)] = 141666, + [SMALL_STATE(2140)] = 141719, + [SMALL_STATE(2141)] = 141772, + [SMALL_STATE(2142)] = 141825, + [SMALL_STATE(2143)] = 141878, + [SMALL_STATE(2144)] = 141931, + [SMALL_STATE(2145)] = 141984, + [SMALL_STATE(2146)] = 142037, + [SMALL_STATE(2147)] = 142090, + [SMALL_STATE(2148)] = 142143, + [SMALL_STATE(2149)] = 142196, + [SMALL_STATE(2150)] = 142251, + [SMALL_STATE(2151)] = 142304, + [SMALL_STATE(2152)] = 142357, + [SMALL_STATE(2153)] = 142402, + [SMALL_STATE(2154)] = 142455, + [SMALL_STATE(2155)] = 142508, + [SMALL_STATE(2156)] = 142561, + [SMALL_STATE(2157)] = 142614, + [SMALL_STATE(2158)] = 142667, + [SMALL_STATE(2159)] = 142720, + [SMALL_STATE(2160)] = 142773, + [SMALL_STATE(2161)] = 142826, + [SMALL_STATE(2162)] = 142879, + [SMALL_STATE(2163)] = 142932, + [SMALL_STATE(2164)] = 142985, + [SMALL_STATE(2165)] = 143040, + [SMALL_STATE(2166)] = 143093, + [SMALL_STATE(2167)] = 143146, + [SMALL_STATE(2168)] = 143199, + [SMALL_STATE(2169)] = 143252, + [SMALL_STATE(2170)] = 143305, + [SMALL_STATE(2171)] = 143358, + [SMALL_STATE(2172)] = 143411, + [SMALL_STATE(2173)] = 143464, + [SMALL_STATE(2174)] = 143517, + [SMALL_STATE(2175)] = 143572, + [SMALL_STATE(2176)] = 143625, + [SMALL_STATE(2177)] = 143678, + [SMALL_STATE(2178)] = 143733, + [SMALL_STATE(2179)] = 143786, + [SMALL_STATE(2180)] = 143839, + [SMALL_STATE(2181)] = 143892, + [SMALL_STATE(2182)] = 143945, + [SMALL_STATE(2183)] = 143998, + [SMALL_STATE(2184)] = 144053, + [SMALL_STATE(2185)] = 144106, + [SMALL_STATE(2186)] = 144161, + [SMALL_STATE(2187)] = 144214, + [SMALL_STATE(2188)] = 144267, + [SMALL_STATE(2189)] = 144320, + [SMALL_STATE(2190)] = 144373, + [SMALL_STATE(2191)] = 144426, + [SMALL_STATE(2192)] = 144469, + [SMALL_STATE(2193)] = 144522, + [SMALL_STATE(2194)] = 144575, + [SMALL_STATE(2195)] = 144628, + [SMALL_STATE(2196)] = 144681, + [SMALL_STATE(2197)] = 144734, + [SMALL_STATE(2198)] = 144787, + [SMALL_STATE(2199)] = 144840, + [SMALL_STATE(2200)] = 144893, + [SMALL_STATE(2201)] = 144948, + [SMALL_STATE(2202)] = 145001, + [SMALL_STATE(2203)] = 145054, + [SMALL_STATE(2204)] = 145107, + [SMALL_STATE(2205)] = 145160, + [SMALL_STATE(2206)] = 145213, + [SMALL_STATE(2207)] = 145266, + [SMALL_STATE(2208)] = 145319, + [SMALL_STATE(2209)] = 145372, + [SMALL_STATE(2210)] = 145425, + [SMALL_STATE(2211)] = 145478, + [SMALL_STATE(2212)] = 145531, + [SMALL_STATE(2213)] = 145584, + [SMALL_STATE(2214)] = 145637, + [SMALL_STATE(2215)] = 145678, + [SMALL_STATE(2216)] = 145719, + [SMALL_STATE(2217)] = 145760, + [SMALL_STATE(2218)] = 145801, + [SMALL_STATE(2219)] = 145839, + [SMALL_STATE(2220)] = 145877, + [SMALL_STATE(2221)] = 145915, + [SMALL_STATE(2222)] = 145953, + [SMALL_STATE(2223)] = 145990, + [SMALL_STATE(2224)] = 146027, + [SMALL_STATE(2225)] = 146064, + [SMALL_STATE(2226)] = 146101, + [SMALL_STATE(2227)] = 146138, + [SMALL_STATE(2228)] = 146175, + [SMALL_STATE(2229)] = 146212, + [SMALL_STATE(2230)] = 146249, + [SMALL_STATE(2231)] = 146286, + [SMALL_STATE(2232)] = 146323, + [SMALL_STATE(2233)] = 146360, + [SMALL_STATE(2234)] = 146397, + [SMALL_STATE(2235)] = 146433, + [SMALL_STATE(2236)] = 146469, + [SMALL_STATE(2237)] = 146505, + [SMALL_STATE(2238)] = 146541, + [SMALL_STATE(2239)] = 146575, + [SMALL_STATE(2240)] = 146609, + [SMALL_STATE(2241)] = 146643, + [SMALL_STATE(2242)] = 146677, + [SMALL_STATE(2243)] = 146704, + [SMALL_STATE(2244)] = 146749, + [SMALL_STATE(2245)] = 146796, + [SMALL_STATE(2246)] = 146843, + [SMALL_STATE(2247)] = 146890, + [SMALL_STATE(2248)] = 146935, + [SMALL_STATE(2249)] = 146964, + [SMALL_STATE(2250)] = 146991, + [SMALL_STATE(2251)] = 147038, + [SMALL_STATE(2252)] = 147085, + [SMALL_STATE(2253)] = 147132, + [SMALL_STATE(2254)] = 147159, + [SMALL_STATE(2255)] = 147206, + [SMALL_STATE(2256)] = 147253, + [SMALL_STATE(2257)] = 147290, + [SMALL_STATE(2258)] = 147323, + [SMALL_STATE(2259)] = 147370, + [SMALL_STATE(2260)] = 147416, + [SMALL_STATE(2261)] = 147454, + [SMALL_STATE(2262)] = 147492, + [SMALL_STATE(2263)] = 147538, + [SMALL_STATE(2264)] = 147584, + [SMALL_STATE(2265)] = 147630, + [SMALL_STATE(2266)] = 147676, + [SMALL_STATE(2267)] = 147718, + [SMALL_STATE(2268)] = 147762, + [SMALL_STATE(2269)] = 147808, + [SMALL_STATE(2270)] = 147852, + [SMALL_STATE(2271)] = 147898, + [SMALL_STATE(2272)] = 147942, + [SMALL_STATE(2273)] = 147988, + [SMALL_STATE(2274)] = 148034, + [SMALL_STATE(2275)] = 148078, + [SMALL_STATE(2276)] = 148119, + [SMALL_STATE(2277)] = 148144, + [SMALL_STATE(2278)] = 148169, + [SMALL_STATE(2279)] = 148194, + [SMALL_STATE(2280)] = 148235, + [SMALL_STATE(2281)] = 148266, + [SMALL_STATE(2282)] = 148301, + [SMALL_STATE(2283)] = 148337, + [SMALL_STATE(2284)] = 148377, + [SMALL_STATE(2285)] = 148417, + [SMALL_STATE(2286)] = 148453, + [SMALL_STATE(2287)] = 148489, + [SMALL_STATE(2288)] = 148513, + [SMALL_STATE(2289)] = 148545, + [SMALL_STATE(2290)] = 148585, + [SMALL_STATE(2291)] = 148625, + [SMALL_STATE(2292)] = 148661, + [SMALL_STATE(2293)] = 148693, + [SMALL_STATE(2294)] = 148717, + [SMALL_STATE(2295)] = 148757, + [SMALL_STATE(2296)] = 148793, + [SMALL_STATE(2297)] = 148823, + [SMALL_STATE(2298)] = 148863, + [SMALL_STATE(2299)] = 148899, + [SMALL_STATE(2300)] = 148939, + [SMALL_STATE(2301)] = 148975, + [SMALL_STATE(2302)] = 149011, + [SMALL_STATE(2303)] = 149047, + [SMALL_STATE(2304)] = 149071, + [SMALL_STATE(2305)] = 149111, + [SMALL_STATE(2306)] = 149137, + [SMALL_STATE(2307)] = 149177, + [SMALL_STATE(2308)] = 149211, + [SMALL_STATE(2309)] = 149242, + [SMALL_STATE(2310)] = 149273, + [SMALL_STATE(2311)] = 149310, + [SMALL_STATE(2312)] = 149343, + [SMALL_STATE(2313)] = 149366, + [SMALL_STATE(2314)] = 149403, + [SMALL_STATE(2315)] = 149438, + [SMALL_STATE(2316)] = 149461, + [SMALL_STATE(2317)] = 149492, + [SMALL_STATE(2318)] = 149525, + [SMALL_STATE(2319)] = 149556, + [SMALL_STATE(2320)] = 149587, + [SMALL_STATE(2321)] = 149618, + [SMALL_STATE(2322)] = 149649, + [SMALL_STATE(2323)] = 149672, + [SMALL_STATE(2324)] = 149703, + [SMALL_STATE(2325)] = 149738, + [SMALL_STATE(2326)] = 149769, + [SMALL_STATE(2327)] = 149800, + [SMALL_STATE(2328)] = 149831, + [SMALL_STATE(2329)] = 149864, + [SMALL_STATE(2330)] = 149901, + [SMALL_STATE(2331)] = 149938, + [SMALL_STATE(2332)] = 149969, + [SMALL_STATE(2333)] = 149992, + [SMALL_STATE(2334)] = 150029, + [SMALL_STATE(2335)] = 150060, + [SMALL_STATE(2336)] = 150093, + [SMALL_STATE(2337)] = 150124, + [SMALL_STATE(2338)] = 150149, + [SMALL_STATE(2339)] = 150174, + [SMALL_STATE(2340)] = 150197, + [SMALL_STATE(2341)] = 150230, + [SMALL_STATE(2342)] = 150267, + [SMALL_STATE(2343)] = 150296, + [SMALL_STATE(2344)] = 150329, + [SMALL_STATE(2345)] = 150364, + [SMALL_STATE(2346)] = 150395, + [SMALL_STATE(2347)] = 150432, + [SMALL_STATE(2348)] = 150457, + [SMALL_STATE(2349)] = 150480, + [SMALL_STATE(2350)] = 150511, + [SMALL_STATE(2351)] = 150548, + [SMALL_STATE(2352)] = 150581, + [SMALL_STATE(2353)] = 150612, + [SMALL_STATE(2354)] = 150641, + [SMALL_STATE(2355)] = 150676, + [SMALL_STATE(2356)] = 150711, + [SMALL_STATE(2357)] = 150748, + [SMALL_STATE(2358)] = 150779, + [SMALL_STATE(2359)] = 150816, + [SMALL_STATE(2360)] = 150851, + [SMALL_STATE(2361)] = 150884, + [SMALL_STATE(2362)] = 150917, + [SMALL_STATE(2363)] = 150948, + [SMALL_STATE(2364)] = 150982, + [SMALL_STATE(2365)] = 151012, + [SMALL_STATE(2366)] = 151040, + [SMALL_STATE(2367)] = 151074, + [SMALL_STATE(2368)] = 151102, + [SMALL_STATE(2369)] = 151136, + [SMALL_STATE(2370)] = 151164, + [SMALL_STATE(2371)] = 151198, + [SMALL_STATE(2372)] = 151230, + [SMALL_STATE(2373)] = 151264, + [SMALL_STATE(2374)] = 151296, + [SMALL_STATE(2375)] = 151328, + [SMALL_STATE(2376)] = 151360, + [SMALL_STATE(2377)] = 151392, + [SMALL_STATE(2378)] = 151420, + [SMALL_STATE(2379)] = 151448, + [SMALL_STATE(2380)] = 151480, + [SMALL_STATE(2381)] = 151502, + [SMALL_STATE(2382)] = 151530, + [SMALL_STATE(2383)] = 151558, + [SMALL_STATE(2384)] = 151590, + [SMALL_STATE(2385)] = 151618, + [SMALL_STATE(2386)] = 151652, + [SMALL_STATE(2387)] = 151680, + [SMALL_STATE(2388)] = 151714, + [SMALL_STATE(2389)] = 151736, + [SMALL_STATE(2390)] = 151768, + [SMALL_STATE(2391)] = 151802, + [SMALL_STATE(2392)] = 151836, + [SMALL_STATE(2393)] = 151864, + [SMALL_STATE(2394)] = 151898, + [SMALL_STATE(2395)] = 151926, + [SMALL_STATE(2396)] = 151960, + [SMALL_STATE(2397)] = 151994, + [SMALL_STATE(2398)] = 152028, + [SMALL_STATE(2399)] = 152056, + [SMALL_STATE(2400)] = 152084, + [SMALL_STATE(2401)] = 152112, + [SMALL_STATE(2402)] = 152144, + [SMALL_STATE(2403)] = 152166, + [SMALL_STATE(2404)] = 152200, + [SMALL_STATE(2405)] = 152228, + [SMALL_STATE(2406)] = 152262, + [SMALL_STATE(2407)] = 152290, + [SMALL_STATE(2408)] = 152318, + [SMALL_STATE(2409)] = 152352, + [SMALL_STATE(2410)] = 152380, + [SMALL_STATE(2411)] = 152414, + [SMALL_STATE(2412)] = 152448, + [SMALL_STATE(2413)] = 152482, + [SMALL_STATE(2414)] = 152512, + [SMALL_STATE(2415)] = 152540, + [SMALL_STATE(2416)] = 152574, + [SMALL_STATE(2417)] = 152602, + [SMALL_STATE(2418)] = 152636, + [SMALL_STATE(2419)] = 152667, + [SMALL_STATE(2420)] = 152698, + [SMALL_STATE(2421)] = 152729, + [SMALL_STATE(2422)] = 152754, + [SMALL_STATE(2423)] = 152785, + [SMALL_STATE(2424)] = 152816, + [SMALL_STATE(2425)] = 152847, + [SMALL_STATE(2426)] = 152878, + [SMALL_STATE(2427)] = 152903, + [SMALL_STATE(2428)] = 152934, + [SMALL_STATE(2429)] = 152959, + [SMALL_STATE(2430)] = 152990, + [SMALL_STATE(2431)] = 153021, + [SMALL_STATE(2432)] = 153046, + [SMALL_STATE(2433)] = 153077, + [SMALL_STATE(2434)] = 153108, + [SMALL_STATE(2435)] = 153133, + [SMALL_STATE(2436)] = 153164, + [SMALL_STATE(2437)] = 153195, + [SMALL_STATE(2438)] = 153226, + [SMALL_STATE(2439)] = 153257, + [SMALL_STATE(2440)] = 153282, + [SMALL_STATE(2441)] = 153313, + [SMALL_STATE(2442)] = 153338, + [SMALL_STATE(2443)] = 153369, + [SMALL_STATE(2444)] = 153400, + [SMALL_STATE(2445)] = 153431, + [SMALL_STATE(2446)] = 153462, + [SMALL_STATE(2447)] = 153493, + [SMALL_STATE(2448)] = 153524, + [SMALL_STATE(2449)] = 153555, + [SMALL_STATE(2450)] = 153586, + [SMALL_STATE(2451)] = 153617, + [SMALL_STATE(2452)] = 153648, + [SMALL_STATE(2453)] = 153679, + [SMALL_STATE(2454)] = 153710, + [SMALL_STATE(2455)] = 153741, + [SMALL_STATE(2456)] = 153772, + [SMALL_STATE(2457)] = 153797, + [SMALL_STATE(2458)] = 153828, + [SMALL_STATE(2459)] = 153859, + [SMALL_STATE(2460)] = 153890, + [SMALL_STATE(2461)] = 153921, + [SMALL_STATE(2462)] = 153952, + [SMALL_STATE(2463)] = 153983, + [SMALL_STATE(2464)] = 154008, + [SMALL_STATE(2465)] = 154039, + [SMALL_STATE(2466)] = 154070, + [SMALL_STATE(2467)] = 154101, + [SMALL_STATE(2468)] = 154132, + [SMALL_STATE(2469)] = 154157, + [SMALL_STATE(2470)] = 154188, + [SMALL_STATE(2471)] = 154213, + [SMALL_STATE(2472)] = 154244, + [SMALL_STATE(2473)] = 154275, + [SMALL_STATE(2474)] = 154306, + [SMALL_STATE(2475)] = 154337, + [SMALL_STATE(2476)] = 154362, + [SMALL_STATE(2477)] = 154393, + [SMALL_STATE(2478)] = 154424, + [SMALL_STATE(2479)] = 154455, + [SMALL_STATE(2480)] = 154486, + [SMALL_STATE(2481)] = 154511, + [SMALL_STATE(2482)] = 154542, + [SMALL_STATE(2483)] = 154573, + [SMALL_STATE(2484)] = 154604, + [SMALL_STATE(2485)] = 154635, + [SMALL_STATE(2486)] = 154666, + [SMALL_STATE(2487)] = 154697, + [SMALL_STATE(2488)] = 154728, + [SMALL_STATE(2489)] = 154759, + [SMALL_STATE(2490)] = 154784, + [SMALL_STATE(2491)] = 154815, + [SMALL_STATE(2492)] = 154846, + [SMALL_STATE(2493)] = 154871, + [SMALL_STATE(2494)] = 154902, + [SMALL_STATE(2495)] = 154933, + [SMALL_STATE(2496)] = 154964, + [SMALL_STATE(2497)] = 154989, + [SMALL_STATE(2498)] = 155020, + [SMALL_STATE(2499)] = 155051, + [SMALL_STATE(2500)] = 155082, + [SMALL_STATE(2501)] = 155107, + [SMALL_STATE(2502)] = 155132, + [SMALL_STATE(2503)] = 155163, + [SMALL_STATE(2504)] = 155194, + [SMALL_STATE(2505)] = 155225, + [SMALL_STATE(2506)] = 155256, + [SMALL_STATE(2507)] = 155287, + [SMALL_STATE(2508)] = 155318, + [SMALL_STATE(2509)] = 155343, + [SMALL_STATE(2510)] = 155374, + [SMALL_STATE(2511)] = 155405, + [SMALL_STATE(2512)] = 155436, + [SMALL_STATE(2513)] = 155467, + [SMALL_STATE(2514)] = 155498, + [SMALL_STATE(2515)] = 155523, + [SMALL_STATE(2516)] = 155554, + [SMALL_STATE(2517)] = 155585, + [SMALL_STATE(2518)] = 155616, + [SMALL_STATE(2519)] = 155647, + [SMALL_STATE(2520)] = 155678, + [SMALL_STATE(2521)] = 155709, + [SMALL_STATE(2522)] = 155740, + [SMALL_STATE(2523)] = 155765, + [SMALL_STATE(2524)] = 155796, + [SMALL_STATE(2525)] = 155827, + [SMALL_STATE(2526)] = 155858, + [SMALL_STATE(2527)] = 155889, + [SMALL_STATE(2528)] = 155920, + [SMALL_STATE(2529)] = 155951, + [SMALL_STATE(2530)] = 155976, + [SMALL_STATE(2531)] = 156007, + [SMALL_STATE(2532)] = 156038, + [SMALL_STATE(2533)] = 156058, + [SMALL_STATE(2534)] = 156086, + [SMALL_STATE(2535)] = 156106, + [SMALL_STATE(2536)] = 156126, + [SMALL_STATE(2537)] = 156146, + [SMALL_STATE(2538)] = 156174, + [SMALL_STATE(2539)] = 156202, + [SMALL_STATE(2540)] = 156230, + [SMALL_STATE(2541)] = 156258, + [SMALL_STATE(2542)] = 156286, + [SMALL_STATE(2543)] = 156314, + [SMALL_STATE(2544)] = 156342, + [SMALL_STATE(2545)] = 156370, + [SMALL_STATE(2546)] = 156390, + [SMALL_STATE(2547)] = 156418, + [SMALL_STATE(2548)] = 156438, + [SMALL_STATE(2549)] = 156458, + [SMALL_STATE(2550)] = 156486, + [SMALL_STATE(2551)] = 156512, + [SMALL_STATE(2552)] = 156540, + [SMALL_STATE(2553)] = 156568, + [SMALL_STATE(2554)] = 156596, + [SMALL_STATE(2555)] = 156616, + [SMALL_STATE(2556)] = 156644, + [SMALL_STATE(2557)] = 156672, + [SMALL_STATE(2558)] = 156692, + [SMALL_STATE(2559)] = 156720, + [SMALL_STATE(2560)] = 156748, + [SMALL_STATE(2561)] = 156774, + [SMALL_STATE(2562)] = 156794, + [SMALL_STATE(2563)] = 156814, + [SMALL_STATE(2564)] = 156842, + [SMALL_STATE(2565)] = 156870, + [SMALL_STATE(2566)] = 156898, + [SMALL_STATE(2567)] = 156918, + [SMALL_STATE(2568)] = 156946, + [SMALL_STATE(2569)] = 156966, + [SMALL_STATE(2570)] = 156994, + [SMALL_STATE(2571)] = 157015, + [SMALL_STATE(2572)] = 157038, + [SMALL_STATE(2573)] = 157061, + [SMALL_STATE(2574)] = 157084, + [SMALL_STATE(2575)] = 157107, + [SMALL_STATE(2576)] = 157130, + [SMALL_STATE(2577)] = 157153, + [SMALL_STATE(2578)] = 157176, + [SMALL_STATE(2579)] = 157197, + [SMALL_STATE(2580)] = 157220, + [SMALL_STATE(2581)] = 157243, + [SMALL_STATE(2582)] = 157266, + [SMALL_STATE(2583)] = 157289, + [SMALL_STATE(2584)] = 157312, + [SMALL_STATE(2585)] = 157335, + [SMALL_STATE(2586)] = 157358, + [SMALL_STATE(2587)] = 157381, + [SMALL_STATE(2588)] = 157404, + [SMALL_STATE(2589)] = 157427, + [SMALL_STATE(2590)] = 157450, + [SMALL_STATE(2591)] = 157473, + [SMALL_STATE(2592)] = 157491, + [SMALL_STATE(2593)] = 157509, + [SMALL_STATE(2594)] = 157529, + [SMALL_STATE(2595)] = 157547, + [SMALL_STATE(2596)] = 157573, + [SMALL_STATE(2597)] = 157593, + [SMALL_STATE(2598)] = 157607, + [SMALL_STATE(2599)] = 157624, + [SMALL_STATE(2600)] = 157639, + [SMALL_STATE(2601)] = 157658, + [SMALL_STATE(2602)] = 157677, + [SMALL_STATE(2603)] = 157696, + [SMALL_STATE(2604)] = 157715, + [SMALL_STATE(2605)] = 157734, + [SMALL_STATE(2606)] = 157751, + [SMALL_STATE(2607)] = 157770, + [SMALL_STATE(2608)] = 157789, + [SMALL_STATE(2609)] = 157804, + [SMALL_STATE(2610)] = 157827, + [SMALL_STATE(2611)] = 157842, + [SMALL_STATE(2612)] = 157861, + [SMALL_STATE(2613)] = 157876, + [SMALL_STATE(2614)] = 157899, + [SMALL_STATE(2615)] = 157914, + [SMALL_STATE(2616)] = 157937, + [SMALL_STATE(2617)] = 157952, + [SMALL_STATE(2618)] = 157969, + [SMALL_STATE(2619)] = 157988, + [SMALL_STATE(2620)] = 158005, + [SMALL_STATE(2621)] = 158024, + [SMALL_STATE(2622)] = 158039, + [SMALL_STATE(2623)] = 158058, + [SMALL_STATE(2624)] = 158077, + [SMALL_STATE(2625)] = 158100, + [SMALL_STATE(2626)] = 158119, + [SMALL_STATE(2627)] = 158136, + [SMALL_STATE(2628)] = 158159, + [SMALL_STATE(2629)] = 158178, + [SMALL_STATE(2630)] = 158201, + [SMALL_STATE(2631)] = 158218, + [SMALL_STATE(2632)] = 158237, + [SMALL_STATE(2633)] = 158260, + [SMALL_STATE(2634)] = 158279, + [SMALL_STATE(2635)] = 158296, + [SMALL_STATE(2636)] = 158315, + [SMALL_STATE(2637)] = 158338, + [SMALL_STATE(2638)] = 158355, + [SMALL_STATE(2639)] = 158378, + [SMALL_STATE(2640)] = 158393, + [SMALL_STATE(2641)] = 158410, + [SMALL_STATE(2642)] = 158429, + [SMALL_STATE(2643)] = 158448, + [SMALL_STATE(2644)] = 158465, + [SMALL_STATE(2645)] = 158482, + [SMALL_STATE(2646)] = 158501, + [SMALL_STATE(2647)] = 158518, + [SMALL_STATE(2648)] = 158535, + [SMALL_STATE(2649)] = 158554, + [SMALL_STATE(2650)] = 158569, + [SMALL_STATE(2651)] = 158583, + [SMALL_STATE(2652)] = 158599, + [SMALL_STATE(2653)] = 158619, + [SMALL_STATE(2654)] = 158633, + [SMALL_STATE(2655)] = 158653, + [SMALL_STATE(2656)] = 158667, + [SMALL_STATE(2657)] = 158687, + [SMALL_STATE(2658)] = 158707, + [SMALL_STATE(2659)] = 158727, + [SMALL_STATE(2660)] = 158743, + [SMALL_STATE(2661)] = 158757, + [SMALL_STATE(2662)] = 158771, + [SMALL_STATE(2663)] = 158791, + [SMALL_STATE(2664)] = 158805, + [SMALL_STATE(2665)] = 158821, + [SMALL_STATE(2666)] = 158841, + [SMALL_STATE(2667)] = 158861, + [SMALL_STATE(2668)] = 158881, + [SMALL_STATE(2669)] = 158901, + [SMALL_STATE(2670)] = 158921, + [SMALL_STATE(2671)] = 158937, + [SMALL_STATE(2672)] = 158957, + [SMALL_STATE(2673)] = 158977, + [SMALL_STATE(2674)] = 158997, + [SMALL_STATE(2675)] = 159011, + [SMALL_STATE(2676)] = 159027, + [SMALL_STATE(2677)] = 159043, + [SMALL_STATE(2678)] = 159059, + [SMALL_STATE(2679)] = 159079, + [SMALL_STATE(2680)] = 159093, + [SMALL_STATE(2681)] = 159109, + [SMALL_STATE(2682)] = 159122, + [SMALL_STATE(2683)] = 159135, + [SMALL_STATE(2684)] = 159148, + [SMALL_STATE(2685)] = 159163, + [SMALL_STATE(2686)] = 159180, + [SMALL_STATE(2687)] = 159197, + [SMALL_STATE(2688)] = 159210, + [SMALL_STATE(2689)] = 159227, + [SMALL_STATE(2690)] = 159240, + [SMALL_STATE(2691)] = 159253, + [SMALL_STATE(2692)] = 159268, + [SMALL_STATE(2693)] = 159281, + [SMALL_STATE(2694)] = 159298, + [SMALL_STATE(2695)] = 159311, + [SMALL_STATE(2696)] = 159328, + [SMALL_STATE(2697)] = 159345, + [SMALL_STATE(2698)] = 159362, + [SMALL_STATE(2699)] = 159379, + [SMALL_STATE(2700)] = 159396, + [SMALL_STATE(2701)] = 159413, + [SMALL_STATE(2702)] = 159430, + [SMALL_STATE(2703)] = 159443, + [SMALL_STATE(2704)] = 159458, + [SMALL_STATE(2705)] = 159469, + [SMALL_STATE(2706)] = 159486, + [SMALL_STATE(2707)] = 159503, + [SMALL_STATE(2708)] = 159514, + [SMALL_STATE(2709)] = 159527, + [SMALL_STATE(2710)] = 159542, + [SMALL_STATE(2711)] = 159559, + [SMALL_STATE(2712)] = 159576, + [SMALL_STATE(2713)] = 159593, + [SMALL_STATE(2714)] = 159610, + [SMALL_STATE(2715)] = 159627, + [SMALL_STATE(2716)] = 159640, + [SMALL_STATE(2717)] = 159653, + [SMALL_STATE(2718)] = 159666, + [SMALL_STATE(2719)] = 159683, + [SMALL_STATE(2720)] = 159696, + [SMALL_STATE(2721)] = 159713, + [SMALL_STATE(2722)] = 159728, + [SMALL_STATE(2723)] = 159743, + [SMALL_STATE(2724)] = 159758, + [SMALL_STATE(2725)] = 159775, + [SMALL_STATE(2726)] = 159792, + [SMALL_STATE(2727)] = 159805, + [SMALL_STATE(2728)] = 159818, + [SMALL_STATE(2729)] = 159830, + [SMALL_STATE(2730)] = 159844, + [SMALL_STATE(2731)] = 159858, + [SMALL_STATE(2732)] = 159872, + [SMALL_STATE(2733)] = 159886, + [SMALL_STATE(2734)] = 159900, + [SMALL_STATE(2735)] = 159914, + [SMALL_STATE(2736)] = 159928, + [SMALL_STATE(2737)] = 159942, + [SMALL_STATE(2738)] = 159956, + [SMALL_STATE(2739)] = 159970, + [SMALL_STATE(2740)] = 159984, + [SMALL_STATE(2741)] = 159998, + [SMALL_STATE(2742)] = 160012, + [SMALL_STATE(2743)] = 160026, + [SMALL_STATE(2744)] = 160040, + [SMALL_STATE(2745)] = 160054, + [SMALL_STATE(2746)] = 160068, + [SMALL_STATE(2747)] = 160082, + [SMALL_STATE(2748)] = 160096, + [SMALL_STATE(2749)] = 160106, + [SMALL_STATE(2750)] = 160118, + [SMALL_STATE(2751)] = 160132, + [SMALL_STATE(2752)] = 160146, + [SMALL_STATE(2753)] = 160160, + [SMALL_STATE(2754)] = 160174, + [SMALL_STATE(2755)] = 160188, + [SMALL_STATE(2756)] = 160202, + [SMALL_STATE(2757)] = 160216, + [SMALL_STATE(2758)] = 160230, + [SMALL_STATE(2759)] = 160244, + [SMALL_STATE(2760)] = 160258, + [SMALL_STATE(2761)] = 160272, + [SMALL_STATE(2762)] = 160286, + [SMALL_STATE(2763)] = 160300, + [SMALL_STATE(2764)] = 160310, + [SMALL_STATE(2765)] = 160324, + [SMALL_STATE(2766)] = 160338, + [SMALL_STATE(2767)] = 160352, + [SMALL_STATE(2768)] = 160366, + [SMALL_STATE(2769)] = 160380, + [SMALL_STATE(2770)] = 160394, + [SMALL_STATE(2771)] = 160408, + [SMALL_STATE(2772)] = 160422, + [SMALL_STATE(2773)] = 160436, + [SMALL_STATE(2774)] = 160450, + [SMALL_STATE(2775)] = 160464, + [SMALL_STATE(2776)] = 160478, + [SMALL_STATE(2777)] = 160492, + [SMALL_STATE(2778)] = 160506, + [SMALL_STATE(2779)] = 160520, + [SMALL_STATE(2780)] = 160534, + [SMALL_STATE(2781)] = 160548, + [SMALL_STATE(2782)] = 160562, + [SMALL_STATE(2783)] = 160576, + [SMALL_STATE(2784)] = 160590, + [SMALL_STATE(2785)] = 160604, + [SMALL_STATE(2786)] = 160618, + [SMALL_STATE(2787)] = 160632, + [SMALL_STATE(2788)] = 160646, + [SMALL_STATE(2789)] = 160660, + [SMALL_STATE(2790)] = 160674, + [SMALL_STATE(2791)] = 160688, + [SMALL_STATE(2792)] = 160702, + [SMALL_STATE(2793)] = 160716, + [SMALL_STATE(2794)] = 160730, + [SMALL_STATE(2795)] = 160740, + [SMALL_STATE(2796)] = 160754, + [SMALL_STATE(2797)] = 160768, + [SMALL_STATE(2798)] = 160782, + [SMALL_STATE(2799)] = 160796, + [SMALL_STATE(2800)] = 160810, + [SMALL_STATE(2801)] = 160824, + [SMALL_STATE(2802)] = 160838, + [SMALL_STATE(2803)] = 160850, + [SMALL_STATE(2804)] = 160864, + [SMALL_STATE(2805)] = 160878, + [SMALL_STATE(2806)] = 160892, + [SMALL_STATE(2807)] = 160906, + [SMALL_STATE(2808)] = 160920, + [SMALL_STATE(2809)] = 160934, + [SMALL_STATE(2810)] = 160946, + [SMALL_STATE(2811)] = 160960, + [SMALL_STATE(2812)] = 160974, + [SMALL_STATE(2813)] = 160988, + [SMALL_STATE(2814)] = 161002, + [SMALL_STATE(2815)] = 161016, + [SMALL_STATE(2816)] = 161030, + [SMALL_STATE(2817)] = 161044, + [SMALL_STATE(2818)] = 161058, + [SMALL_STATE(2819)] = 161072, + [SMALL_STATE(2820)] = 161086, + [SMALL_STATE(2821)] = 161100, + [SMALL_STATE(2822)] = 161114, + [SMALL_STATE(2823)] = 161128, + [SMALL_STATE(2824)] = 161142, + [SMALL_STATE(2825)] = 161154, + [SMALL_STATE(2826)] = 161168, + [SMALL_STATE(2827)] = 161182, + [SMALL_STATE(2828)] = 161196, + [SMALL_STATE(2829)] = 161210, + [SMALL_STATE(2830)] = 161224, + [SMALL_STATE(2831)] = 161238, + [SMALL_STATE(2832)] = 161252, + [SMALL_STATE(2833)] = 161266, + [SMALL_STATE(2834)] = 161280, + [SMALL_STATE(2835)] = 161294, + [SMALL_STATE(2836)] = 161308, + [SMALL_STATE(2837)] = 161322, + [SMALL_STATE(2838)] = 161336, + [SMALL_STATE(2839)] = 161350, + [SMALL_STATE(2840)] = 161364, + [SMALL_STATE(2841)] = 161378, + [SMALL_STATE(2842)] = 161392, + [SMALL_STATE(2843)] = 161406, + [SMALL_STATE(2844)] = 161420, + [SMALL_STATE(2845)] = 161430, + [SMALL_STATE(2846)] = 161444, + [SMALL_STATE(2847)] = 161458, + [SMALL_STATE(2848)] = 161472, + [SMALL_STATE(2849)] = 161486, + [SMALL_STATE(2850)] = 161500, + [SMALL_STATE(2851)] = 161514, + [SMALL_STATE(2852)] = 161528, + [SMALL_STATE(2853)] = 161542, + [SMALL_STATE(2854)] = 161556, + [SMALL_STATE(2855)] = 161568, + [SMALL_STATE(2856)] = 161582, + [SMALL_STATE(2857)] = 161596, + [SMALL_STATE(2858)] = 161606, + [SMALL_STATE(2859)] = 161618, + [SMALL_STATE(2860)] = 161630, + [SMALL_STATE(2861)] = 161644, + [SMALL_STATE(2862)] = 161658, + [SMALL_STATE(2863)] = 161672, + [SMALL_STATE(2864)] = 161684, + [SMALL_STATE(2865)] = 161698, + [SMALL_STATE(2866)] = 161712, + [SMALL_STATE(2867)] = 161724, + [SMALL_STATE(2868)] = 161738, + [SMALL_STATE(2869)] = 161752, + [SMALL_STATE(2870)] = 161766, + [SMALL_STATE(2871)] = 161780, + [SMALL_STATE(2872)] = 161794, + [SMALL_STATE(2873)] = 161808, + [SMALL_STATE(2874)] = 161820, + [SMALL_STATE(2875)] = 161834, + [SMALL_STATE(2876)] = 161848, + [SMALL_STATE(2877)] = 161860, + [SMALL_STATE(2878)] = 161872, + [SMALL_STATE(2879)] = 161884, + [SMALL_STATE(2880)] = 161898, + [SMALL_STATE(2881)] = 161910, + [SMALL_STATE(2882)] = 161922, + [SMALL_STATE(2883)] = 161934, + [SMALL_STATE(2884)] = 161948, + [SMALL_STATE(2885)] = 161960, + [SMALL_STATE(2886)] = 161972, + [SMALL_STATE(2887)] = 161986, + [SMALL_STATE(2888)] = 161998, + [SMALL_STATE(2889)] = 162012, + [SMALL_STATE(2890)] = 162024, + [SMALL_STATE(2891)] = 162038, + [SMALL_STATE(2892)] = 162052, + [SMALL_STATE(2893)] = 162066, + [SMALL_STATE(2894)] = 162080, + [SMALL_STATE(2895)] = 162094, + [SMALL_STATE(2896)] = 162108, + [SMALL_STATE(2897)] = 162119, + [SMALL_STATE(2898)] = 162130, + [SMALL_STATE(2899)] = 162141, + [SMALL_STATE(2900)] = 162152, + [SMALL_STATE(2901)] = 162163, + [SMALL_STATE(2902)] = 162174, + [SMALL_STATE(2903)] = 162185, + [SMALL_STATE(2904)] = 162196, + [SMALL_STATE(2905)] = 162207, + [SMALL_STATE(2906)] = 162218, + [SMALL_STATE(2907)] = 162227, + [SMALL_STATE(2908)] = 162238, + [SMALL_STATE(2909)] = 162249, + [SMALL_STATE(2910)] = 162260, + [SMALL_STATE(2911)] = 162271, + [SMALL_STATE(2912)] = 162280, + [SMALL_STATE(2913)] = 162291, + [SMALL_STATE(2914)] = 162300, + [SMALL_STATE(2915)] = 162311, + [SMALL_STATE(2916)] = 162322, + [SMALL_STATE(2917)] = 162333, + [SMALL_STATE(2918)] = 162344, + [SMALL_STATE(2919)] = 162355, + [SMALL_STATE(2920)] = 162366, + [SMALL_STATE(2921)] = 162377, + [SMALL_STATE(2922)] = 162388, + [SMALL_STATE(2923)] = 162397, + [SMALL_STATE(2924)] = 162408, + [SMALL_STATE(2925)] = 162417, + [SMALL_STATE(2926)] = 162428, + [SMALL_STATE(2927)] = 162439, + [SMALL_STATE(2928)] = 162450, + [SMALL_STATE(2929)] = 162461, + [SMALL_STATE(2930)] = 162472, + [SMALL_STATE(2931)] = 162483, + [SMALL_STATE(2932)] = 162494, + [SMALL_STATE(2933)] = 162505, + [SMALL_STATE(2934)] = 162516, + [SMALL_STATE(2935)] = 162527, + [SMALL_STATE(2936)] = 162538, + [SMALL_STATE(2937)] = 162549, + [SMALL_STATE(2938)] = 162560, + [SMALL_STATE(2939)] = 162571, + [SMALL_STATE(2940)] = 162582, + [SMALL_STATE(2941)] = 162593, + [SMALL_STATE(2942)] = 162604, + [SMALL_STATE(2943)] = 162615, + [SMALL_STATE(2944)] = 162626, + [SMALL_STATE(2945)] = 162637, + [SMALL_STATE(2946)] = 162648, + [SMALL_STATE(2947)] = 162659, + [SMALL_STATE(2948)] = 162670, + [SMALL_STATE(2949)] = 162681, + [SMALL_STATE(2950)] = 162692, + [SMALL_STATE(2951)] = 162703, + [SMALL_STATE(2952)] = 162714, + [SMALL_STATE(2953)] = 162725, + [SMALL_STATE(2954)] = 162736, + [SMALL_STATE(2955)] = 162747, + [SMALL_STATE(2956)] = 162758, + [SMALL_STATE(2957)] = 162769, + [SMALL_STATE(2958)] = 162780, + [SMALL_STATE(2959)] = 162791, + [SMALL_STATE(2960)] = 162802, + [SMALL_STATE(2961)] = 162813, + [SMALL_STATE(2962)] = 162824, + [SMALL_STATE(2963)] = 162832, + [SMALL_STATE(2964)] = 162840, + [SMALL_STATE(2965)] = 162848, + [SMALL_STATE(2966)] = 162856, + [SMALL_STATE(2967)] = 162864, + [SMALL_STATE(2968)] = 162872, + [SMALL_STATE(2969)] = 162880, + [SMALL_STATE(2970)] = 162888, + [SMALL_STATE(2971)] = 162896, + [SMALL_STATE(2972)] = 162904, + [SMALL_STATE(2973)] = 162912, + [SMALL_STATE(2974)] = 162920, + [SMALL_STATE(2975)] = 162928, + [SMALL_STATE(2976)] = 162936, + [SMALL_STATE(2977)] = 162944, + [SMALL_STATE(2978)] = 162952, + [SMALL_STATE(2979)] = 162960, + [SMALL_STATE(2980)] = 162968, + [SMALL_STATE(2981)] = 162976, + [SMALL_STATE(2982)] = 162984, + [SMALL_STATE(2983)] = 162992, + [SMALL_STATE(2984)] = 163000, + [SMALL_STATE(2985)] = 163008, + [SMALL_STATE(2986)] = 163016, + [SMALL_STATE(2987)] = 163024, + [SMALL_STATE(2988)] = 163032, + [SMALL_STATE(2989)] = 163040, + [SMALL_STATE(2990)] = 163048, + [SMALL_STATE(2991)] = 163056, + [SMALL_STATE(2992)] = 163064, + [SMALL_STATE(2993)] = 163072, + [SMALL_STATE(2994)] = 163080, + [SMALL_STATE(2995)] = 163088, + [SMALL_STATE(2996)] = 163096, + [SMALL_STATE(2997)] = 163104, + [SMALL_STATE(2998)] = 163112, + [SMALL_STATE(2999)] = 163120, + [SMALL_STATE(3000)] = 163128, + [SMALL_STATE(3001)] = 163136, + [SMALL_STATE(3002)] = 163144, + [SMALL_STATE(3003)] = 163152, + [SMALL_STATE(3004)] = 163160, + [SMALL_STATE(3005)] = 163168, + [SMALL_STATE(3006)] = 163176, + [SMALL_STATE(3007)] = 163184, + [SMALL_STATE(3008)] = 163192, + [SMALL_STATE(3009)] = 163200, + [SMALL_STATE(3010)] = 163208, + [SMALL_STATE(3011)] = 163216, + [SMALL_STATE(3012)] = 163224, + [SMALL_STATE(3013)] = 163232, + [SMALL_STATE(3014)] = 163240, + [SMALL_STATE(3015)] = 163248, + [SMALL_STATE(3016)] = 163256, + [SMALL_STATE(3017)] = 163264, + [SMALL_STATE(3018)] = 163272, + [SMALL_STATE(3019)] = 163280, + [SMALL_STATE(3020)] = 163288, + [SMALL_STATE(3021)] = 163296, + [SMALL_STATE(3022)] = 163304, + [SMALL_STATE(3023)] = 163312, + [SMALL_STATE(3024)] = 163320, + [SMALL_STATE(3025)] = 163328, + [SMALL_STATE(3026)] = 163336, + [SMALL_STATE(3027)] = 163344, + [SMALL_STATE(3028)] = 163352, + [SMALL_STATE(3029)] = 163360, + [SMALL_STATE(3030)] = 163368, + [SMALL_STATE(3031)] = 163376, + [SMALL_STATE(3032)] = 163384, + [SMALL_STATE(3033)] = 163392, + [SMALL_STATE(3034)] = 163400, + [SMALL_STATE(3035)] = 163408, + [SMALL_STATE(3036)] = 163416, + [SMALL_STATE(3037)] = 163424, + [SMALL_STATE(3038)] = 163432, + [SMALL_STATE(3039)] = 163440, + [SMALL_STATE(3040)] = 163448, + [SMALL_STATE(3041)] = 163456, + [SMALL_STATE(3042)] = 163464, + [SMALL_STATE(3043)] = 163472, + [SMALL_STATE(3044)] = 163480, + [SMALL_STATE(3045)] = 163488, + [SMALL_STATE(3046)] = 163496, + [SMALL_STATE(3047)] = 163504, + [SMALL_STATE(3048)] = 163512, + [SMALL_STATE(3049)] = 163520, + [SMALL_STATE(3050)] = 163528, + [SMALL_STATE(3051)] = 163536, + [SMALL_STATE(3052)] = 163544, + [SMALL_STATE(3053)] = 163552, + [SMALL_STATE(3054)] = 163560, + [SMALL_STATE(3055)] = 163568, + [SMALL_STATE(3056)] = 163576, + [SMALL_STATE(3057)] = 163584, + [SMALL_STATE(3058)] = 163592, + [SMALL_STATE(3059)] = 163600, + [SMALL_STATE(3060)] = 163608, + [SMALL_STATE(3061)] = 163616, + [SMALL_STATE(3062)] = 163624, + [SMALL_STATE(3063)] = 163632, + [SMALL_STATE(3064)] = 163640, + [SMALL_STATE(3065)] = 163648, + [SMALL_STATE(3066)] = 163656, + [SMALL_STATE(3067)] = 163664, + [SMALL_STATE(3068)] = 163672, + [SMALL_STATE(3069)] = 163680, + [SMALL_STATE(3070)] = 163688, + [SMALL_STATE(3071)] = 163696, + [SMALL_STATE(3072)] = 163704, + [SMALL_STATE(3073)] = 163712, + [SMALL_STATE(3074)] = 163720, + [SMALL_STATE(3075)] = 163728, + [SMALL_STATE(3076)] = 163736, + [SMALL_STATE(3077)] = 163744, + [SMALL_STATE(3078)] = 163752, + [SMALL_STATE(3079)] = 163760, + [SMALL_STATE(3080)] = 163768, + [SMALL_STATE(3081)] = 163776, + [SMALL_STATE(3082)] = 163784, + [SMALL_STATE(3083)] = 163792, + [SMALL_STATE(3084)] = 163800, + [SMALL_STATE(3085)] = 163808, + [SMALL_STATE(3086)] = 163816, + [SMALL_STATE(3087)] = 163824, + [SMALL_STATE(3088)] = 163832, + [SMALL_STATE(3089)] = 163840, + [SMALL_STATE(3090)] = 163848, + [SMALL_STATE(3091)] = 163856, + [SMALL_STATE(3092)] = 163864, + [SMALL_STATE(3093)] = 163872, + [SMALL_STATE(3094)] = 163880, + [SMALL_STATE(3095)] = 163888, + [SMALL_STATE(3096)] = 163896, + [SMALL_STATE(3097)] = 163904, + [SMALL_STATE(3098)] = 163912, + [SMALL_STATE(3099)] = 163920, + [SMALL_STATE(3100)] = 163928, + [SMALL_STATE(3101)] = 163936, + [SMALL_STATE(3102)] = 163944, + [SMALL_STATE(3103)] = 163952, + [SMALL_STATE(3104)] = 163960, + [SMALL_STATE(3105)] = 163968, + [SMALL_STATE(3106)] = 163976, + [SMALL_STATE(3107)] = 163984, + [SMALL_STATE(3108)] = 163992, + [SMALL_STATE(3109)] = 164000, + [SMALL_STATE(3110)] = 164008, + [SMALL_STATE(3111)] = 164016, + [SMALL_STATE(3112)] = 164024, + [SMALL_STATE(3113)] = 164032, + [SMALL_STATE(3114)] = 164040, + [SMALL_STATE(3115)] = 164048, + [SMALL_STATE(3116)] = 164056, + [SMALL_STATE(3117)] = 164064, + [SMALL_STATE(3118)] = 164072, + [SMALL_STATE(3119)] = 164080, + [SMALL_STATE(3120)] = 164088, + [SMALL_STATE(3121)] = 164096, + [SMALL_STATE(3122)] = 164104, + [SMALL_STATE(3123)] = 164112, + [SMALL_STATE(3124)] = 164120, + [SMALL_STATE(3125)] = 164128, + [SMALL_STATE(3126)] = 164136, + [SMALL_STATE(3127)] = 164144, + [SMALL_STATE(3128)] = 164152, + [SMALL_STATE(3129)] = 164160, + [SMALL_STATE(3130)] = 164168, + [SMALL_STATE(3131)] = 164176, + [SMALL_STATE(3132)] = 164184, + [SMALL_STATE(3133)] = 164192, + [SMALL_STATE(3134)] = 164200, + [SMALL_STATE(3135)] = 164208, + [SMALL_STATE(3136)] = 164216, + [SMALL_STATE(3137)] = 164224, + [SMALL_STATE(3138)] = 164232, + [SMALL_STATE(3139)] = 164240, + [SMALL_STATE(3140)] = 164248, + [SMALL_STATE(3141)] = 164256, + [SMALL_STATE(3142)] = 164264, + [SMALL_STATE(3143)] = 164272, + [SMALL_STATE(3144)] = 164280, + [SMALL_STATE(3145)] = 164288, + [SMALL_STATE(3146)] = 164296, + [SMALL_STATE(3147)] = 164304, + [SMALL_STATE(3148)] = 164312, + [SMALL_STATE(3149)] = 164320, + [SMALL_STATE(3150)] = 164328, + [SMALL_STATE(3151)] = 164336, + [SMALL_STATE(3152)] = 164344, + [SMALL_STATE(3153)] = 164352, + [SMALL_STATE(3154)] = 164360, + [SMALL_STATE(3155)] = 164368, + [SMALL_STATE(3156)] = 164376, + [SMALL_STATE(3157)] = 164384, + [SMALL_STATE(3158)] = 164392, + [SMALL_STATE(3159)] = 164400, + [SMALL_STATE(3160)] = 164408, + [SMALL_STATE(3161)] = 164416, + [SMALL_STATE(3162)] = 164424, + [SMALL_STATE(3163)] = 164432, + [SMALL_STATE(3164)] = 164440, + [SMALL_STATE(3165)] = 164448, + [SMALL_STATE(3166)] = 164456, + [SMALL_STATE(3167)] = 164464, + [SMALL_STATE(3168)] = 164472, + [SMALL_STATE(3169)] = 164480, + [SMALL_STATE(3170)] = 164488, + [SMALL_STATE(3171)] = 164496, + [SMALL_STATE(3172)] = 164504, + [SMALL_STATE(3173)] = 164512, + [SMALL_STATE(3174)] = 164520, + [SMALL_STATE(3175)] = 164528, + [SMALL_STATE(3176)] = 164536, + [SMALL_STATE(3177)] = 164544, + [SMALL_STATE(3178)] = 164552, + [SMALL_STATE(3179)] = 164560, + [SMALL_STATE(3180)] = 164568, + [SMALL_STATE(3181)] = 164576, + [SMALL_STATE(3182)] = 164584, + [SMALL_STATE(3183)] = 164592, + [SMALL_STATE(3184)] = 164600, + [SMALL_STATE(3185)] = 164608, + [SMALL_STATE(3186)] = 164616, + [SMALL_STATE(3187)] = 164624, + [SMALL_STATE(3188)] = 164632, + [SMALL_STATE(3189)] = 164640, + [SMALL_STATE(3190)] = 164648, + [SMALL_STATE(3191)] = 164656, + [SMALL_STATE(3192)] = 164664, + [SMALL_STATE(3193)] = 164672, + [SMALL_STATE(3194)] = 164680, + [SMALL_STATE(3195)] = 164688, + [SMALL_STATE(3196)] = 164696, + [SMALL_STATE(3197)] = 164704, + [SMALL_STATE(3198)] = 164712, + [SMALL_STATE(3199)] = 164720, + [SMALL_STATE(3200)] = 164728, + [SMALL_STATE(3201)] = 164736, + [SMALL_STATE(3202)] = 164744, + [SMALL_STATE(3203)] = 164752, + [SMALL_STATE(3204)] = 164760, + [SMALL_STATE(3205)] = 164768, + [SMALL_STATE(3206)] = 164776, + [SMALL_STATE(3207)] = 164784, + [SMALL_STATE(3208)] = 164792, + [SMALL_STATE(3209)] = 164800, + [SMALL_STATE(3210)] = 164808, + [SMALL_STATE(3211)] = 164816, + [SMALL_STATE(3212)] = 164824, + [SMALL_STATE(3213)] = 164832, + [SMALL_STATE(3214)] = 164840, + [SMALL_STATE(3215)] = 164848, + [SMALL_STATE(3216)] = 164856, + [SMALL_STATE(3217)] = 164864, + [SMALL_STATE(3218)] = 164872, + [SMALL_STATE(3219)] = 164880, + [SMALL_STATE(3220)] = 164888, + [SMALL_STATE(3221)] = 164896, + [SMALL_STATE(3222)] = 164904, + [SMALL_STATE(3223)] = 164912, + [SMALL_STATE(3224)] = 164920, + [SMALL_STATE(3225)] = 164928, + [SMALL_STATE(3226)] = 164936, + [SMALL_STATE(3227)] = 164944, + [SMALL_STATE(3228)] = 164952, + [SMALL_STATE(3229)] = 164960, + [SMALL_STATE(3230)] = 164968, + [SMALL_STATE(3231)] = 164976, + [SMALL_STATE(3232)] = 164984, + [SMALL_STATE(3233)] = 164992, + [SMALL_STATE(3234)] = 165000, + [SMALL_STATE(3235)] = 165008, + [SMALL_STATE(3236)] = 165016, + [SMALL_STATE(3237)] = 165024, + [SMALL_STATE(3238)] = 165032, + [SMALL_STATE(3239)] = 165040, + [SMALL_STATE(3240)] = 165048, + [SMALL_STATE(3241)] = 165056, + [SMALL_STATE(3242)] = 165064, + [SMALL_STATE(3243)] = 165072, + [SMALL_STATE(3244)] = 165080, + [SMALL_STATE(3245)] = 165088, + [SMALL_STATE(3246)] = 165096, + [SMALL_STATE(3247)] = 165104, + [SMALL_STATE(3248)] = 165112, + [SMALL_STATE(3249)] = 165120, + [SMALL_STATE(3250)] = 165128, + [SMALL_STATE(3251)] = 165136, + [SMALL_STATE(3252)] = 165144, + [SMALL_STATE(3253)] = 165152, + [SMALL_STATE(3254)] = 165160, + [SMALL_STATE(3255)] = 165168, + [SMALL_STATE(3256)] = 165176, + [SMALL_STATE(3257)] = 165184, + [SMALL_STATE(3258)] = 165192, + [SMALL_STATE(3259)] = 165200, + [SMALL_STATE(3260)] = 165208, + [SMALL_STATE(3261)] = 165216, + [SMALL_STATE(3262)] = 165224, + [SMALL_STATE(3263)] = 165232, + [SMALL_STATE(3264)] = 165240, + [SMALL_STATE(3265)] = 165248, + [SMALL_STATE(3266)] = 165256, + [SMALL_STATE(3267)] = 165263, + [SMALL_STATE(3268)] = 165270, + [SMALL_STATE(3269)] = 165277, + [SMALL_STATE(3270)] = 165284, + [SMALL_STATE(3271)] = 165291, + [SMALL_STATE(3272)] = 165298, + [SMALL_STATE(3273)] = 165305, + [SMALL_STATE(3274)] = 165312, + [SMALL_STATE(3275)] = 165319, + [SMALL_STATE(3276)] = 165326, + [SMALL_STATE(3277)] = 165333, + [SMALL_STATE(3278)] = 165340, + [SMALL_STATE(3279)] = 165347, + [SMALL_STATE(3280)] = 165354, + [SMALL_STATE(3281)] = 165361, + [SMALL_STATE(3282)] = 165368, + [SMALL_STATE(3283)] = 165375, + [SMALL_STATE(3284)] = 165382, + [SMALL_STATE(3285)] = 165389, + [SMALL_STATE(3286)] = 165396, + [SMALL_STATE(3287)] = 165403, + [SMALL_STATE(3288)] = 165410, + [SMALL_STATE(3289)] = 165417, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -163443,2443 +165176,2451 @@ 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(1000), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [79] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1000), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2570), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3141), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(404), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(406), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(485), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(86), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2613), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(77), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3079), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2108), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2653), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3072), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3060), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3058), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3057), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(448), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3141), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(451), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(460), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3037), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1875), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1875), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2557), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(419), - [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(2650), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3223), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3101), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3102), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3174), - [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, .production_id = 11), - [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, .production_id = 11), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(125), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(3078), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(440), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(141), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2580), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(78), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(3079), - [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(3078), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(599), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(624), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(3069), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(896), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(896), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2564), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(121), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(3098), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(465), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(133), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2588), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(82), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(3098), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(654), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(651), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(3027), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(904), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(904), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 30), SHIFT_REPEAT(2549), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1012), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2595), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3219), + [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(433), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(335), + [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(491), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(87), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2635), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(76), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3221), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2114), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2677), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3249), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3127), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3128), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3196), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(639), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3219), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(642), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(803), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3252), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1924), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1924), + [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2572), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(462), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(86), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2664), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3258), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3257), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3255), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(3253), + [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, .production_id = 12), + [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, .production_id = 12), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(187), + [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3148), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(473), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(136), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2633), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(83), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3221), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3148), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(743), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(609), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3095), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(928), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(928), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2585), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(193), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3072), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(595), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(122), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2604), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(81), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3072), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(572), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(655), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(3053), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(979), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(979), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 2, .production_id = 31), SHIFT_REPEAT(2584), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1139), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2995), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(596), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(134), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2605), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(79), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3079), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(643), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2995), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(858), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(857), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3173), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1279), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1279), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2554), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, .production_id = 1), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1401), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2995), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(596), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(134), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2605), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(79), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3079), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(403), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(523), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(452), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3173), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1279), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2554), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 5), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 5), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 43), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, .production_id = 43), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 4), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 4), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2138), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 31), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 31), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 18), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 18), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3098), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3098), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 4), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 2), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 2), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3073), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3073), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 13), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 13), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 12), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 12), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3104), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3104), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 3), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 6), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 6), - [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3078), - [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3078), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 18), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 18), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_operation, 4), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_operation, 4), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2146), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 1), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_coalesce, 3), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_coalesce, 3), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 2), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 19), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 19), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 5), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 5), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 4), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 4), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 3), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 3), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(544), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3068), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(544), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(541), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 14), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 14), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_type, 1), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_type, 1), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_basic_type, 1), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_basic_type, 1), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(824), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3212), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(824), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(826), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 2, .production_id = 5), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 2), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 2), - [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(2621), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_suffix, 2), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_suffix, 2), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 7), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 7), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 12, .production_id = 81), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 12, .production_id = 81), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 11, .production_id = 80), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 11, .production_id = 80), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 3), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 3), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braces_expression, 3), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braces_expression, 3), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_expr, 3), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_expr, 3), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 78), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 78), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 77), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 77), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 75), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 75), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 74), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 74), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 8, .production_id = 71), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 8, .production_id = 71), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 8, .production_id = 70), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 8, .production_id = 70), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 7, .production_id = 66), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 7, .production_id = 66), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 7, .production_id = 62), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 7, .production_id = 62), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 46), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 46), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute, 3, .production_id = 22), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute, 3, .production_id = 22), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 6, .production_id = 55), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 6, .production_id = 55), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 46), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 46), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 34), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 34), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_operation, 3), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_operation, 3), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 25), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 25), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 5, .production_id = 5), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 4), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 4), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 5, .production_id = 40), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 5, .production_id = 40), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 25), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 25), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_item, 4, .production_id = 35), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_item, 4, .production_id = 35), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 34), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 34), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 4, .production_id = 5), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 3), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 3), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2943), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2943), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2084), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2970), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2970), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3061), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(653), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3105), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(653), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(662), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 20), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 20), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 10), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 10), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2995), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 24), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 24), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 51), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 51), - [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 = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3133), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 39), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 39), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2166), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 49), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 49), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 49), SHIFT_REPEAT(602), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 49), SHIFT_REPEAT(417), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3040), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(718), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3022), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(718), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(717), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2174), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 36), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 36), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 24), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 24), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 39), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 39), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3177), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3088), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2186), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(542), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2967), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(542), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(543), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3221), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3141), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2971), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2113), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(872), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3081), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(872), - [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(873), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3010), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2124), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2169), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 37), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 37), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 48), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 48), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 50), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 50), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3191), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2100), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 6, .production_id = 53), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 6, .production_id = 53), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 5, .production_id = 41), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 5, .production_id = 41), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 42), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 42), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 6, .production_id = 56), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 6, .production_id = 56), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 5, .production_id = 41), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 5, .production_id = 41), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 5, .production_id = 41), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 5, .production_id = 41), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3137), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(650), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3033), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(650), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(655), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 8), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 8), - [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(642), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3215), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(641), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 4, .production_id = 29), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 4, .production_id = 29), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 11, .production_id = 79), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 11, .production_id = 79), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 21), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 21), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 7, .production_id = 63), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 7, .production_id = 63), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 10, .production_id = 76), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 10, .production_id = 76), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(563), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2940), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(563), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(567), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 58), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 58), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 73), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 73), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 59), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 59), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 7, .production_id = 60), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 7, .production_id = 60), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 72), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 72), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 4, .production_id = 29), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 4, .production_id = 29), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 4, .production_id = 29), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 4, .production_id = 29), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 69), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 69), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 68), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 68), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 67), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 67), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(737), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3217), - [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(737), - [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(738), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, .production_id = 28), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 28), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat, 2), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(577), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3002), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(577), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 15), SHIFT_REPEAT(575), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 1), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 3), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 2), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 3), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 2), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 4), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test, 1), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test, 1), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_entry, 4), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_entry, 4), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 52), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 45), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 54), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 27), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 16), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 18), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 44), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(448), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2601), - [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2601), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1153), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3028), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(749), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(129), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2603), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(85), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3221), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(591), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3028), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(598), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(597), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(3195), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1268), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(1268), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 2), SHIFT_REPEAT(2590), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, .production_id = 1), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1417), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3028), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(749), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(129), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2603), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(85), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3221), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(512), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(538), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(456), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(3195), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(1268), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_long_expression_repeat1, 2), SHIFT_REPEAT(2590), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 20), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 20), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_operation, 4), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_operation, 4), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 19), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 19), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 3), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 3), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 4), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 4), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_coalesce, 3), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_coalesce, 3), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 2), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 2), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 13), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 13), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 2), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 14), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 14), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dotted_name, 1), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3080), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3080), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), + [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3072), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3072), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, .production_id = 44), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, .production_id = 44), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 33), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 33), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 32), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2108), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 19), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 19), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 6), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 6), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 5), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 5), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_expression, 4), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_expression, 4), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3148), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3148), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3166), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3166), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2109), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_basic_type, 1), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_basic_type, 1), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 3), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 3), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 5), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 5), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 6), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_type, 4), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_type, 4), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(688), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3263), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(688), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(687), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(559), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3081), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(559), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(575), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 15), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute_declaration, 3, .production_id = 15), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_type, 1), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_type, 1), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 2), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 2), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_operation, 1), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_operation, 1), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 8, .production_id = 72), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 8, .production_id = 72), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 8, .production_id = 71), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 8, .production_id = 71), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 7, .production_id = 67), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 7, .production_id = 67), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 7, .production_id = 63), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 7, .production_id = 63), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_suffix, 2), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_suffix, 2), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 47), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 47), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 2, .production_id = 5), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 2, .production_id = 5), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 7), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 7), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_instantiation, 2, .production_id = 8), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 4, .production_id = 5), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 4, .production_id = 5), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expression, 3), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expression, 3), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 6, .production_id = 56), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 6, .production_id = 56), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 47), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 47), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 3), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 3), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_braces_expression, 3), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_braces_expression, 3), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 3), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 3), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 35), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 35), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_expr, 3), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_expr, 3), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dict_expr, 2), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_expr, 2), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_expr, 5, .production_id = 5), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_expr, 5, .production_id = 5), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 5, .production_id = 41), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 5, .production_id = 41), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 26), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 26), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 35), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 35), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_attribute, 3, .production_id = 23), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_attribute, 3, .production_id = 23), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_item, 4, .production_id = 36), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_item, 4, .production_id = 36), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_expr, 4), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_expr, 4), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 26), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 26), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_operation, 3), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_operation, 3), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 12, .production_id = 82), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 12, .production_id = 82), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 11, .production_id = 81), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 11, .production_id = 81), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 79), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 79), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 10, .production_id = 78), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 10, .production_id = 78), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 76), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 76), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quant_expr, 9, .production_id = 75), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_expr, 9, .production_id = 75), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2196), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3226), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3117), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3117), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3213), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3213), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(830), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3167), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(830), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(826), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 21), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 21), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 11), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 1, .production_id = 11), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3028), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2990), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 52), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 52), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 25), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 25), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 39), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 39), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 40), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 40), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(746), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2203), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(364), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3013), + [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(725), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3014), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(725), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(724), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 25), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 25), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2142), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 40), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 40), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2190), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 37), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 37), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(547), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3048), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(547), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(548), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2976), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(2981), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3057), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(845), + [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(2975), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(845), + [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(844), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3037), + [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2125), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3049), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2167), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2145), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3219), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 51), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 51), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 70), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 70), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selector_expression_repeat1, 2), SHIFT_REPEAT(3010), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(3003), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 73), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 73), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 9, .production_id = 74), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 9, .production_id = 74), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 8, .production_id = 69), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 8, .production_id = 69), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 11, .production_id = 80), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 11, .production_id = 80), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2147), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 68), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 68), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(647), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3224), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(647), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(640), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 7, .production_id = 64), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 7, .production_id = 64), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 7, .production_id = 61), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 7, .production_id = 61), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 60), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 60), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 59), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 59), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 10, .production_id = 77), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 10, .production_id = 77), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixin_statement, 6, .production_id = 57), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixin_statement, 6, .production_id = 57), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_index_signature, 6, .production_id = 54), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_index_signature, 6, .production_id = 54), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 49), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 49), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 4, .production_id = 30), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 4, .production_id = 30), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 4, .production_id = 30), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 4, .production_id = 30), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 43), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_check_statement_repeat1, 3, .production_id = 43), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 5, .production_id = 42), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 5, .production_id = 42), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_statement, 5, .production_id = 42), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_statement, 5, .production_id = 42), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_schema_statement, 5, .production_id = 42), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_schema_statement, 5, .production_id = 42), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rule_statement, 4, .production_id = 30), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rule_statement, 4, .production_id = 30), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 38), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 38), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(752), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3118), + [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(752), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(768), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(386), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3062), + [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(385), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(745), + [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3002), + [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(745), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(320), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat, 2), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, .production_id = 29), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 29), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(809), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(3030), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(809), + [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 16), SHIFT_REPEAT(650), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 1), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_expr_repeat1, 1), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dict_expr_repeat1, 2), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 2), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 3), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 4), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 3), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entries, 2), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test, 1), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test, 1), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_entry, 4), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_entry, 4), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 28), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 53), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 46), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 55), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 28), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 17), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 6), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 45), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 19), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(639), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2642), + [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_repeat1, 2), SHIFT_REPEAT(2642), [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_repeat1, 2), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2164), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(890), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3216), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2604), - [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2604), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(845), - [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3108), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 26), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2092), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 1), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2248), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2251), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2165), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 6, .production_id = 61), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(387), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3210), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(540), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(3134), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2618), + [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(2618), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 27), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2194), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2118), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2172), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(2636), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2158), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 1), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 17), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(184), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2732), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(385), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 52), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 47), SHIFT_REPEAT(248), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 47), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 3), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 65), SHIFT_REPEAT(3063), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 65), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2144), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 1), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 3), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 3), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2167), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(2145), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(214), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_op, 1), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 57), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 9), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 1), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 2), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 4, .production_id = 64), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 23), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unification, 3, .production_id = 16), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4655] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1, .production_id = 33), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 1), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2266), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 2), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), SHIFT_REPEAT(2279), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entries, 1), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(2676), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 6, .production_id = 62), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 18), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2148), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_prefix, 1), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 1), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2759), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2170), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(213), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(178), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 2), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config_entry, 3), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_entry, 3), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_entries_repeat1, 3), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_entries_repeat1, 3), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(318), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 48), SHIFT_REPEAT(224), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 48), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 53), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 66), SHIFT_REPEAT(3098), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 66), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(2153), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(2187), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quant_target_repeat1, 2, .production_id = 58), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 10), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_op, 1), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 1), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 4, .production_id = 65), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quant_target, 1, .production_id = 34), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 24), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unification, 3, .production_id = 17), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 2), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [5011] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), }; #ifdef __cplusplus diff --git a/test/corpus/schema.txt b/test/corpus/schema.txt index 119591e..4d9dbbf 100644 --- a/test/corpus/schema.txt +++ b/test/corpus/schema.txt @@ -163,6 +163,25 @@ schema ObsoleteSchema: (identifier)) (basic_type)))))) +================================================================================ +Schema Kwargs +================================================================================ + +personA = Person() {} + +-------------------------------------------------------------------------------- + +(module + (assignment + (dotted_name + (identifier)) + (schema_instantiation + (call + (attribute + (identifier)) + (argument_list)) + (dictionary)))) + ================================================================================ Unification Statement ================================================================================